Skip to content

Commit

Permalink
fix not raised exp bug
Browse files Browse the repository at this point in the history
  • Loading branch information
yutorse committed Mar 27, 2024
1 parent 01f1e9a commit 144a628
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/bastion/azext_bastion/tunnel.py
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ def _get_auth_token(self):
exp = CloudError(response, error=response_json["message"])
else:
exp = CloudError(response)
raise exp
raise exp

self.last_token = response_json["authToken"]
self.node_id = response_json["nodeId"]
Expand Down

0 comments on commit 144a628

Please sign in to comment.