Skip to content

Timeout

Alex edited this page Jan 29, 2021 · 2 revisions

Enabled by default

The timeout makes sure to cancel the current execution if we pass the timeout limit.

Configuration - defaults

CommandConfiguration.CreateConfiguration(
config =>
{
    config.ExecutionTimeoutSettings = new ExecutionTimeoutSettings(
    isEnabled: true,
    executionTimeoutInMiliseconds: 1000);
});
Clone this wiki locally