Skip to content

Commit 50cd73e

Browse files
fix: remove job isolation references from docstrings
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent c9cd43b commit 50cd73e

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

packages/uipath-platform/src/uipath/platform/chat/llm_throttle.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ def set_llm_concurrency(limit: int) -> None:
5050

5151

5252
def reset_llm_concurrency() -> None:
53-
"""Reset LLM concurrency to default for per-job isolation."""
53+
"""Reset LLM concurrency limit and semaphore to defaults."""
5454
global _llm_concurrency_limit, _llm_semaphore, _llm_semaphore_loop
5555
_llm_concurrency_limit = DEFAULT_LLM_CONCURRENCY
5656
_llm_semaphore = None

packages/uipath-platform/src/uipath/platform/common/_config.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,7 @@ def is_tracing_enabled(self) -> bool:
178178
return os.getenv(ENV_TRACING_ENABLED, "true").lower() == "true"
179179

180180
def reset(self) -> None:
181-
"""Reset mutable state for per-job isolation in pooled server mode."""
181+
"""Reset mutable cached state to defaults."""
182182
self.studio_solution_id = None
183183
# Invalidate cached_property by removing from instance __dict__
184184
self.__dict__.pop("_internal_arguments", None)

0 commit comments

Comments
 (0)