Skip to content

Commit

Permalink
Fix GSSAPI authentication
Browse files Browse the repository at this point in the history
  • Loading branch information
hluk committed Sep 22, 2023
1 parent bfbdf26 commit b80ea4e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion product_listings_manager/auth.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ def process_gssapi_request(token):

stage = "step context"
token = sc.step(token if token else None)
token = token if token is not None else ""
token = token if token is not None else b""

# The current architecture cannot support continuation here
stage = "checking completion"
Expand Down

0 comments on commit b80ea4e

Please sign in to comment.