##// END OF EJS Templates
celery: log exception in the event of unknown IOError
dan -
r266:2f064e44 default
parent child Browse files
Show More
@@ -64,7 +64,7 b' def run_task(task, *args, **kwargs):'
64 64 log.error('Unable to connect to celeryd. Sync execution')
65 65 rhodecode.CELERY_ENABLED = False
66 66 else:
67 log.error("Exception while connecting to celeryd.")
67 log.exception("Exception while connecting to celeryd.")
68 68 except KeyError as e:
69 69 log.error('Unable to connect to celeryd. Sync execution')
70 70 except Exception as e:
General Comments 0
You need to be logged in to leave comments. Login now