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?
Hi Matej,
You can override the script timeout time:
engine.Timeout = TimeSpan.FromMinutes(10);
Hi Matej,
You can use the Timeout property of the Engine class:
engine.Timeout = TimeSpan.FromMinutes(20);
Thank you
Thanks, this solved the problem.