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 Selected answer as best 12th December 2024
Hi Matej,
You can override the script timeout time:
engine.Timeout = TimeSpan.FromMinutes(10);
Matej Bredik Posted new comment 12th December 2024
Thanks, this solved the problem.