You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
def f():
raise Exception("I should not see this!")
I run the worker with rq worker --url=redis://redis:6379 --with-scheduler --name=worker1 --exception-handler=app.my_exception_handler -d and when I enqueue and run f() my custom exception handler is invoked, but I still see f's traceback in the log. Is this expected?
The text was updated successfully, but these errors were encountered:
Task:
I run the worker with
rq worker --url=redis://redis:6379 --with-scheduler --name=worker1 --exception-handler=app.my_exception_handler -d
and when I enqueue and runf()
my custom exception handler is invoked, but I still see f's traceback in the log. Is this expected?The text was updated successfully, but these errors were encountered: