I have a script that takes a longer time to execute (more than 10 minutes for sure) and Dataminer stops the execution with a timeout message: Script Failure (test): Script has been running for too long, and is being aborted. (CSharp; 0x00040262h): (see comment for more details).
My question is: is there a way to turn off this timeout or make it longer?
Matej Bredik [DevOps Advocate] Selected answer as best 12th December 2024
Hi Matej,
You can use the Timeout property of the Engine class:
engine.Timeout = TimeSpan.FromMinutes(20);
Matej Bredik [DevOps Advocate] Posted new comment 12th December 2024
Thank you