Timeout errors caused by large documents
Problem
The transmission of large documents to ImageMaster fails with a message like below:
Microsoft.Extensions.Http.DefaultHttpClientFactory[103]|HttpMessageHandler expired after 120000ms for client
Solution
Increase the timeout value, which is set to 120 seconds by default in bootstrap.json:
...
"IntegrationService": {
"RequestTimeoutInSec": 120
},
...
"IntegrationService": {
"RequestTimeoutInSec": 120
},
...