1

When I'm running a worker, it is shutting down with an error "Time limit exceeded". How to increase the time limit of worker.

Evil_Sperm
  • 51
  • 9

1 Answers1

1

By default dramatiq has a default actor time limit of 10 minutes, which means that any actor running for longer than 10 minutes is killed with a TimeLimitExceeded error. To increase the time limit, add a time_limit argument to the actor in milliseconds. @actor(time_limit=60000)

Evil_Sperm
  • 51
  • 9