-
Notifications
You must be signed in to change notification settings - Fork 2
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.
CommandConfiguration.CreateConfiguration(
config =>
{
config.ExecutionTimeoutSettings = new ExecutionTimeoutSettings(
isEnabled: true,
executionTimeoutInMiliseconds: 1000);
});