Skip to content

Commit 753fbfe

Browse files
committed
fix(trace): add back folder keys in traces
1 parent 709d5ea commit 753fbfe

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "uipath"
3-
version = "2.0.75"
3+
version = "2.0.76"
44
description = "Python SDK and CLI for UiPath Platform, enabling programmatic interaction with automation services, process management, and deployment tools."
55
readme = { file = "README.md", content-type = "text/markdown" }
66
requires-python = ">=3.10"
@@ -15,7 +15,7 @@ dependencies = [
1515
"pathlib>=1.0.1",
1616
"rich>=13.0.0",
1717
"azure-monitor-opentelemetry>=1.6.8",
18-
"truststore>=0.10.1"
18+
"truststore>=0.10.1",
1919
]
2020
classifiers = [
2121
"Development Status :: 3 - Alpha",

src/uipath/tracing/_utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ class UiPathSpan:
3737
)
3838
expiry_time_utc: Optional[str] = None
3939
folder_key: Optional[str] = field(
40-
default_factory=lambda: env.get("UIPATH_FOLDER_KEY_XYZ", "")
40+
default_factory=lambda: env.get("UIPATH_FOLDER_KEY", "")
4141
)
4242
source: Optional[str] = None
4343
span_type: str = "Coded Agents"

0 commit comments

Comments
 (0)