We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9d46bca commit a0ed749Copy full SHA for a0ed749
src/worker/authn.py
@@ -11,7 +11,7 @@
11
from .config import env_vars
12
from typing import Annotated
13
from fastapi import Depends, HTTPException, status
14
-
+from jwt.exceptions import InvalidTokenError
15
16
oauth2_scheme = OAuth2PasswordBearer(
17
tokenUrl="token",
src/worker/utilities_test.py
@@ -8,4 +8,4 @@
8
9
def test_get_sftp_bucket_name():
10
"""Run tests on various BaseUser class functions."""
- assert get_sftp_bucket_name("LOCAL") == "LOCAL_sftp_ingestion"
+ assert get_sftp_bucket_name("LOCAL") == "local_sftp_ingestion"
0 commit comments