Skip to content

Commit 7e91737

Browse files
committed
fix: job.Key should be lowercase
1 parent 2b8cf4d commit 7e91737

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "uipath-langchain"
3-
version = "0.0.85"
3+
version = "0.0.86"
44
description = "UiPath Langchain"
55
readme = { file = "README.md", content-type = "text/markdown" }
66
requires-python = ">=3.10"

src/uipath_langchain/_cli/_runtime/_output.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -243,7 +243,7 @@ async def _save_resume_trigger(self) -> None:
243243
if job:
244244
self._resume_trigger = UiPathResumeTrigger(
245245
trigger_type=UiPathResumeTriggerType.JOB,
246-
item_key=job.Key,
246+
item_key=job.key,
247247
)
248248
elif isinstance(self.interrupt_value, WaitJob):
249249
self._resume_trigger = UiPathResumeTrigger(

0 commit comments

Comments
 (0)