Skip to content

Commit d635ef5

Browse files
committed
Merge branch '874-appauth-false-settings-doesnt-work-anymore-with-bearer_token-env-variable-configured-in-enviroment' of https://github.com/ssl-hep/ServiceX into 874-appauth-false-settings-doesnt-work-anymore-with-bearer_token-env-variable-configured-in-enviroment
2 parents cfa1d08 + ddc9477 commit d635ef5

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

servicex_app/servicex_app/resources/users/token_refresh.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,4 @@ def post(self):
5252
return {"message": "Invalid or outdated refresh token"}, 401
5353
current_user = user.email
5454
access_token = create_access_token(identity=current_user)
55-
return {
56-
"access_token": access_token,
57-
"auth_disabled": False
58-
}, 200
55+
return {"access_token": access_token, "auth_disabled": False}, 200

0 commit comments

Comments
 (0)