From 7016c1b09052301ca5a4c64d8f07447913597309 Mon Sep 17 00:00:00 2001 From: "Alan B. Christie" <29806285+alanbchristie@users.noreply.github.com> Date: Thu, 8 Feb 2024 16:52:34 +0000 Subject: [PATCH] fix: Fix poor call (#522) Co-authored-by: Alan Christie --- api/security.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/security.py b/api/security.py index 46d0e150..73533bb0 100644 --- a/api/security.py +++ b/api/security.py @@ -211,7 +211,7 @@ def get_proposals_for_user_from_ispyb(self, user): if needs_updating: if conn := get_configured_connector(): logger.info("Got a connector for '%s'", user.username) - self._extracted_from_get_proposals_for_user_from_ispyb_10(user, conn) + self._get_proposals_from_connector(user, conn) else: logger.info("Failed to get a connector for '%s'", user.username)