From ef9b05e228b477974dd94dd2d74793282a2386f1 Mon Sep 17 00:00:00 2001 From: Kyle MacMillan Date: Tue, 3 Dec 2024 16:13:37 -0500 Subject: [PATCH] Updated doc stirng --- notifications_utils/logging.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/notifications_utils/logging.py b/notifications_utils/logging.py index 1f72e9f2..f188e7b7 100644 --- a/notifications_utils/logging.py +++ b/notifications_utils/logging.py @@ -173,6 +173,6 @@ def filter(self, record): def _get_api_id() -> str: """Generate a request_id. - g is a global for this request. It is attached to the Flask and is only persisted for that request. + g is a Flask global for this request. It's attached to the Flask instance and is only persisted for that request """ return g.request_id if getattr(g, 'request_id', '') else str(uuid4())