From 0312315538d2812615e7b4da8fccdeba77c33687 Mon Sep 17 00:00:00 2001 From: Cryptophobia Date: Tue, 24 Nov 2020 22:05:55 -0500 Subject: [PATCH] fix(HPAs): add continue in try and catch block Signed-off-by: Cryptophobia --- rootfs/api/management/commands/load_db_state_to_k8s.py | 1 + 1 file changed, 1 insertion(+) diff --git a/rootfs/api/management/commands/load_db_state_to_k8s.py b/rootfs/api/management/commands/load_db_state_to_k8s.py index 44c31b9e..ab235941 100644 --- a/rootfs/api/management/commands/load_db_state_to_k8s.py +++ b/rootfs/api/management/commands/load_db_state_to_k8s.py @@ -50,6 +50,7 @@ def handle(self, *args, **options): except Exception as error: print('ERROR: There was a problem deploying HPAs for this {} proc_type ' 'of {} app due to error: {}'.format(proc_type, application, error)) + continue print("Done Publishing DB state to kubernetes.")