Skip to content

Commit

Permalink
Merge pull request #303 from ChristophShyper/patch-1
Browse files Browse the repository at this point in the history
Fix localhost redirect
  • Loading branch information
bwynsm authored Jun 29, 2021
2 parents 9fd4c48 + fd01e7e commit 837d6ae
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 837d6ae

Please sign in to comment.