Skip to content

Commit

Permalink
Merge pull request #336 from nodestream-proj/fix/grab-local-creds
Browse files Browse the repository at this point in the history
Minor Fix to Local Credential Logic
  • Loading branch information
zprobst authored Jul 18, 2024
2 parents 2474f4d + 494c0eb commit aa130eb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion nodestream/pipeline/extractors/credential_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ def get_credentials_from_assume_role(self):
}

def get_credentials_from_provider_chain(self):
session = Session(**self.session_args)
session = Session()
session_credentials = session.get_credentials().get_frozen_credentials()
return {
"access_key": session_credentials.access_key,
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "nodestream"
version = "0.12.5a9"
version = "0.12.5a10"
description = "A Fast, Declarative ETL for Graph Databases."
license = "GPL-3.0-only"
authors = [
Expand Down

0 comments on commit aa130eb

Please sign in to comment.