Skip to content

Commit

Permalink
Merge pull request #14 from globus-labs/0.3.5
Browse files Browse the repository at this point in the history
v0.3.5
  • Loading branch information
haochenpan authored Sep 9, 2024
2 parents a454456 + 174c821 commit c41763b
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
7 changes: 4 additions & 3 deletions diaspora_event_sdk/sdk/aws_iam_msk.py
Original file line number Diff line number Diff line change
Expand Up @@ -114,11 +114,12 @@ def generate_auth_token(region, aws_debug_creds=False):
# Load credentials
import os

assert os.environ["AWS_ACCESS_KEY_ID"]
assert os.environ["AWS_SECRET_ACCESS_KEY"]
assert os.environ["OCTOPUS_AWS_ACCESS_KEY_ID"]
assert os.environ["OCTOPUS_AWS_SECRET_ACCESS_KEY"]

aws_credentials = Credentials(
os.environ["AWS_ACCESS_KEY_ID"], os.environ["AWS_SECRET_ACCESS_KEY"]
os.environ["OCTOPUS_AWS_ACCESS_KEY_ID"],
os.environ["OCTOPUS_AWS_SECRET_ACCESS_KEY"],
)

return __construct_auth_token(region, aws_credentials)
2 changes: 1 addition & 1 deletion diaspora_event_sdk/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.3.4"
__version__ = "0.3.5"

0 comments on commit c41763b

Please sign in to comment.