Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
40 commits
Select commit Hold shift + click to select a range
1e68c3c
Initial Commit
DylanRussell Jul 16, 2025
06dee51
Fix broken tests
DylanRussell Jul 17, 2025
c500b15
Start writing test
DylanRussell Jul 17, 2025
a6dcd1c
Fix tests
DylanRussell Jul 17, 2025
5ef26f2
Merge branch 'main' of github.com:DylanRussell/opentelemetry-python i…
DylanRussell Jul 18, 2025
2e76e59
Add changelog
DylanRussell Jul 18, 2025
9344ebd
Improne and fix _init_exporter func
DylanRussell Jul 18, 2025
cc89293
Fix desc
DylanRussell Jul 18, 2025
f27856f
Run precommit and update variable
DylanRussell Jul 21, 2025
82d72bb
Update changelog
DylanRussell Jul 21, 2025
2244d5a
Merge branch 'main' into add_cred_envvar
DylanRussell Jul 21, 2025
afaf88d
Merge remote-tracking branch 'origin' into add_cred_envvar
DylanRussell Aug 12, 2025
4881780
Fix_type
DylanRussell Aug 12, 2025
66fb14d
Commit changes
DylanRussell Aug 12, 2025
fcadee2
Add test
DylanRussell Aug 13, 2025
6c2740a
fix envvar and typecheck
DylanRussell Aug 13, 2025
0dc2861
Precommit and constraints
DylanRussell Aug 13, 2025
99a55d4
Move change to exporter
DylanRussell Aug 25, 2025
9bf07a7
Move common code to util.
DylanRussell Aug 25, 2025
ae576c1
Merge branch 'main' into add_cred_envvar
DylanRussell Aug 25, 2025
65f177b
Fix lint err and print statment
DylanRussell Sep 2, 2025
ffeb2d2
Merge branch 'main' into add_cred_envvar
DylanRussell Sep 2, 2025
efe5a94
Update opentelemetry-sdk/src/opentelemetry/sdk/environment_variables/…
DylanRussell Sep 8, 2025
0b21293
Respond to comments
DylanRussell Sep 8, 2025
205efa3
Merge branch 'add_cred_envvar' of github.com:DylanRussell/opentelemet…
DylanRussell Sep 8, 2025
810ec49
Ruff
DylanRussell Sep 8, 2025
9b95dfa
Document the entry points better
DylanRussell Sep 8, 2025
9934efe
Going with factory function approach w/ 2 entry points
DylanRussell Sep 8, 2025
24119fb
Add tests.. Fix tox.ini ?
DylanRussell Sep 8, 2025
813c11c
Add http/grpc env var variants
DylanRussell Sep 8, 2025
97fa836
Respond to comments
DylanRussell Sep 8, 2025
e7027a0
Rename python env var with _
DylanRussell Sep 8, 2025
f06d8db
Precommit
DylanRussell Sep 8, 2025
3ab6126
Commit changes
DylanRussell Sep 8, 2025
3e409cc
add new line
DylanRussell Sep 8, 2025
5632fe0
Fix docs error..
DylanRussell Sep 8, 2025
f0fc0f6
get rid of envvar in docstring
DylanRussell Sep 8, 2025
0e0fb9d
Revert tox.ini changes
DylanRussell Sep 9, 2025
5336c95
Revert tox
DylanRussell Sep 9, 2025
0fcdd7b
Merge branch 'main' into add_cred_envvar
DylanRussell Sep 9, 2025
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Going with factory function approach w/ 2 entry points
  • Loading branch information
DylanRussell committed Sep 8, 2025
commit 9934efe7cdee169db4bbfc4e476094a928125f89
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ def _get_credentials(
name=credential_env,
)
)
).load()("GRPC")
).load()()
except StopIteration:
raise RuntimeError(
f"Requested component '{credential_env}' not found in "
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ def _load_session_from_envvar(
name=credential_env,
)
)
).load()("HTTP")
).load()()
except StopIteration:
raise RuntimeError(
f"Requested component '{credential_env}' not found in "
Expand Down
Loading