Experiencing a delayed response from a custom fixlet that’s causing the baseline to fail

We have a baseline with list of fixlets the baseline is failing due to 2 fixlets failures
When running the fixlets individually they fail initially, but after couple of minutes they change status to fixed.
The issue could be related to slow network, or slow machine, is there a way to introduce a delay to the fixlets to prevent the baseline from failing?

You could have the Fixlets pause during their execution, or a separate task in the baseline to introduce one pause to handle both tasks.

In either case, this script should pause for two minutes

parameter "startPause"="{now}"

pause while {now - (parameter "startPause" as time) < 2 * minute}

Thanks for the suggestion.