0

I have updated the "stop the task if it runs longer than" to 1 min. But the task job won't terminate after a minute. What am I missing here? And the job doesn't have any triggers configured.

Davidw
  • 1,222
  • 3
  • 14
  • 25
Uday
  • 63
  • 1
  • 1
  • 5

1 Answers1

1

That's because you started the task manually ("on-demand") and not with a trigger.

The time limit is ignored when you start the task on demand as explained in the documentation:

If a task is started on demand, the ExecutionTimeLimit setting is bypassed. Therefore, a task that is started on demand will not be terminated if it exceeds the ExecutionTimeLimit.

Swisstone
  • 6,725
  • 7
  • 22
  • 32