Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "uipath"
version = "2.1.22"
version = "2.1.23"
description = "Python SDK and CLI for UiPath Platform, enabling programmatic interaction with automation services, process management, and deployment tools."
readme = { file = "README.md", content-type = "text/markdown" }
requires-python = ">=3.10"
Expand All @@ -15,7 +15,7 @@ dependencies = [
"pathlib>=1.0.1",
"rich>=13.0.0",
"azure-monitor-opentelemetry>=1.6.8",
"truststore>=0.10.1"
"truststore>=0.10.1",
]
classifiers = [
"Development Status :: 3 - Alpha",
Expand Down
2 changes: 1 addition & 1 deletion src/uipath/tracing/_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ class UiPathSpan:
)
expiry_time_utc: Optional[str] = None
folder_key: Optional[str] = field(
default_factory=lambda: env.get("UIPATH_FOLDER_KEY_XYZ", "")
default_factory=lambda: env.get("UIPATH_FOLDER_KEY", "")
)
source: Optional[str] = None
span_type: str = "Coded Agents"
Expand Down
Loading