Skip to content

Commit

Permalink
Fix localhost redirect
Browse files Browse the repository at this point in the history
As proposed by @iniquityx2  here #302
  • Loading branch information
ChristophShyper authored Jun 29, 2021
1 parent 9fd4c48 commit fd01e7e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gimme_aws_creds/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -579,7 +579,7 @@ def set_auth_session(self, auth_session):
def auth_session(self):
if 'auth_session' in self._cache:
return self._cache['auth_session']
auth_result = self.okta.auth_session()
auth_result = self.okta.auth_session(redirect_uri=self.conf_dict.get('app_url'))
self.set_auth_session(auth_result)
return auth_result

Expand Down

0 comments on commit fd01e7e

Please sign in to comment.