From 32ec9d8a41cc9ad2ec597ef7bae1d2bcd8d3760b Mon Sep 17 00:00:00 2001 From: pyr0ball Date: Thu, 2 Apr 2026 23:24:32 -0700 Subject: [PATCH] =?UTF-8?q?fix:=20gitleaks=20false=20positive=20=E2=80=94?= =?UTF-8?q?=20annotate=20session=5Ftoken=20assignment=20as=20non-secret?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/cloud_session.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/cloud_session.py b/app/cloud_session.py index 4431da1..ba35bbb 100644 --- a/app/cloud_session.py +++ b/app/cloud_session.py @@ -219,7 +219,7 @@ def get_session(request: Request) -> CloudUser: if not raw_header: raise HTTPException(status_code=401, detail="Not authenticated") - token = _extract_session_token(raw_header) + token = _extract_session_token(raw_header) # gitleaks:allow — function name, not a secret if not token: raise HTTPException(status_code=401, detail="Not authenticated")