From b480424354720d12f760cfc4bd428feb62f9d786 Mon Sep 17 00:00:00 2001 From: "nik.n" Date: Wed, 21 Feb 2024 16:52:19 +0900 Subject: [PATCH] =?UTF-8?q?=E7=A2=BA=E8=AA=8D=E7=94=A8=E4=B8=8D=E8=A6=81?= =?UTF-8?q?=E3=82=B3=E3=83=BC=E3=83=89=E5=89=8A=E9=99=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ecs/restore-dbdump/src/restore_backup.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/ecs/restore-dbdump/src/restore_backup.py b/ecs/restore-dbdump/src/restore_backup.py index 2b015629..d047703a 100644 --- a/ecs/restore-dbdump/src/restore_backup.py +++ b/ecs/restore-dbdump/src/restore_backup.py @@ -63,7 +63,7 @@ def exec(): # 事後処理(共通処理としては空振りする) _post_exec() - + logger.info('[NOTICE]ダンプ復元スクリプト:終了(正常終了)') return constants.BATCH_EXIT_CODE_SUCCESS @@ -77,7 +77,6 @@ def _pre_exec(): 共通機能としては事前処理を実装しない。 事前処理が必要なダンプ復元処理を実装する場合、当ロジックをコピーする。 """ - print('pre') pass def _post_exec(): @@ -86,5 +85,4 @@ def _post_exec(): 共通機能としては事後処理を実装しない。 事後処理が必要なダンプ復元処理を実装する場合、当ロジックをコピーする。 """ - print('post') pass