Fixed Typo in Log Message

After review, fixed a typo in the log message to make it consistent
 with other messages so it can be search for in logs and used in alerts.
This commit is contained in:
Richard Chapman
2017-10-12 12:31:51 +01:00
parent cc4d022213
commit 83a8277b16

View File

@@ -48,7 +48,7 @@ from app.utils import convert_utc_to_bst
@worker_process_shutdown.connect
def worker_process_shutdown(sender, signal, pid, exitcode):
current_app.logger.info('Scheduled tasks worker shutdown:: PID: {} Exitcode: {}'.format(pid, exitcode))
current_app.logger.info('Scheduled tasks worker shutdown: PID: {} Exitcode: {}'.format(pid, exitcode))
@notify_celery.task(name="remove_csv_files")