From 74887414ed17e3e56c71da7075fff0e19f8bbbea Mon Sep 17 00:00:00 2001 From: Hagellach37 Date: Mon, 2 Dec 2024 16:32:50 +0100 Subject: [PATCH] fix log message --- .../python_scripts/add_missing_usernames_in_firebase.py | 2 +- .../update_task_contribution_count_in_firebase.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/mapswipe_workers/python_scripts/add_missing_usernames_in_firebase.py b/mapswipe_workers/python_scripts/add_missing_usernames_in_firebase.py index 10ab3c60..182363fa 100644 --- a/mapswipe_workers/python_scripts/add_missing_usernames_in_firebase.py +++ b/mapswipe_workers/python_scripts/add_missing_usernames_in_firebase.py @@ -42,7 +42,7 @@ def get_all_affected_users(): except Exception as e: logger.exception(e) logger.warning( - f"Could NOT update task contribution count for user in Firebase." + f"Could NOT get affected users from postgres." ) return uid_list diff --git a/mapswipe_workers/python_scripts/update_task_contribution_count_in_firebase.py b/mapswipe_workers/python_scripts/update_task_contribution_count_in_firebase.py index a2437d56..79f0610c 100644 --- a/mapswipe_workers/python_scripts/update_task_contribution_count_in_firebase.py +++ b/mapswipe_workers/python_scripts/update_task_contribution_count_in_firebase.py @@ -50,7 +50,7 @@ def get_all_affected_users(): except Exception as e: logger.exception(e) logger.warning( - f"Could NOT update task contribution count for user in Firebase." + f"Could NOT get affected users from posgres." ) return uid_list