From 79e2398d71762cbec404d8686e53fa4268853bad Mon Sep 17 00:00:00 2001 From: David Duque Date: Sat, 11 Jul 2020 08:30:05 +0100 Subject: [PATCH] Fix comment --- management/backup.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/management/backup.py b/management/backup.py index cbc2ff5f..c9f7d80a 100755 --- a/management/backup.py +++ b/management/backup.py @@ -339,7 +339,8 @@ def perform_backup(full_backup, user_initiated=False): # before the status checks might catch them down. See #381. if user_initiated: # God forgive me for what I'm about to do - lock._release() # We don't need to restart the services + lock._release() + # We don't need to wait for the services to be up in this case else: wait_for_service(25, True, env, 10) wait_for_service(993, True, env, 10)