fix: typo修正 secutiry→security, NDS向け通知処理のエラーID指定漏れ

This commit is contained in:
shimoda.m@nds-tyo.co.jp 2022-07-08 18:00:26 +09:00
parent fc8ecccf21
commit 5e1f737be9
3 changed files with 1 additions and 1 deletions

View File

@ -68,7 +68,7 @@ def handler(event, context):
except MeDaCaException as e:
logger.exception(e.error_id, e)
logger.error(f'処理異常通知の送信指示をしました 通知先トピック:{NDS_NOTICE_TOPIC}')
logger.error('E-ERR-01', f'処理異常通知の送信指示をしました 通知先トピック:{NDS_NOTICE_TOPIC}')
notice_to_nds(e.error_id, e)
raise e
except Exception as e: