Skip to main content

Post-processing script timeout settings

Configure Post-processing script timeout settings using extra-conf.json and deliver it to all the users in your environment. Use this configuration if you encounter frequent timeout issues in your environment when DigiCert Trust Assistantruns the Post-processing scripts. For more information about extra-conf.json file, refer to Configure via GPO or Device Management solution.

At first, set the timeout value for mstimeout parameter in your local environment in ~/.digicert-trust-assistant/config.json. The default value is 30000 milliseconds (30 seconds).

{
...
  "services": [
  ...
    {
      "index": 8,
      "name": "PostScriptService",
      "enable": true,
      "setting": {
        "authenticate": false,
        "msTimeout": 30000
      }
    },
  ...
  ]
...
}

Warning

Setting this value too high may cause performance degradation or make operations unresponsive.

Use the following template for extra-conf.json which overrides the default 30 second timeout for all users using DigiCert Trust Assistant in your environment.

{
  "services": [
    {
      "name": "PostScriptService",
      "setting": {
        "msTimeout": <timeout in milliseconds>
      }
    }
  ]
}