langgraph-runtime-inmem 0.32.0.dev24__tar.gz → 0.32.0.dev25__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {langgraph_runtime_inmem-0.32.0.dev24 → langgraph_runtime_inmem-0.32.0.dev25}/PKG-INFO +1 -1
- {langgraph_runtime_inmem-0.32.0.dev24 → langgraph_runtime_inmem-0.32.0.dev25}/langgraph_runtime_inmem/__init__.py +1 -1
- {langgraph_runtime_inmem-0.32.0.dev24 → langgraph_runtime_inmem-0.32.0.dev25}/langgraph_runtime_inmem/ops.py +6 -3
- {langgraph_runtime_inmem-0.32.0.dev24 → langgraph_runtime_inmem-0.32.0.dev25}/.gitignore +0 -0
- {langgraph_runtime_inmem-0.32.0.dev24 → langgraph_runtime_inmem-0.32.0.dev25}/Makefile +0 -0
- {langgraph_runtime_inmem-0.32.0.dev24 → langgraph_runtime_inmem-0.32.0.dev25}/README.md +0 -0
- {langgraph_runtime_inmem-0.32.0.dev24 → langgraph_runtime_inmem-0.32.0.dev25}/langgraph_runtime_inmem/_persistence.py +0 -0
- {langgraph_runtime_inmem-0.32.0.dev24 → langgraph_runtime_inmem-0.32.0.dev25}/langgraph_runtime_inmem/checkpoint.py +0 -0
- {langgraph_runtime_inmem-0.32.0.dev24 → langgraph_runtime_inmem-0.32.0.dev25}/langgraph_runtime_inmem/database.py +0 -0
- {langgraph_runtime_inmem-0.32.0.dev24 → langgraph_runtime_inmem-0.32.0.dev25}/langgraph_runtime_inmem/inmem_stream.py +0 -0
- {langgraph_runtime_inmem-0.32.0.dev24 → langgraph_runtime_inmem-0.32.0.dev25}/langgraph_runtime_inmem/lifespan.py +0 -0
- {langgraph_runtime_inmem-0.32.0.dev24 → langgraph_runtime_inmem-0.32.0.dev25}/langgraph_runtime_inmem/metrics.py +0 -0
- {langgraph_runtime_inmem-0.32.0.dev24 → langgraph_runtime_inmem-0.32.0.dev25}/langgraph_runtime_inmem/queue.py +0 -0
- {langgraph_runtime_inmem-0.32.0.dev24 → langgraph_runtime_inmem-0.32.0.dev25}/langgraph_runtime_inmem/retry.py +0 -0
- {langgraph_runtime_inmem-0.32.0.dev24 → langgraph_runtime_inmem-0.32.0.dev25}/langgraph_runtime_inmem/routes.py +0 -0
- {langgraph_runtime_inmem-0.32.0.dev24 → langgraph_runtime_inmem-0.32.0.dev25}/langgraph_runtime_inmem/store.py +0 -0
- {langgraph_runtime_inmem-0.32.0.dev24 → langgraph_runtime_inmem-0.32.0.dev25}/pyproject.toml +0 -0
- {langgraph_runtime_inmem-0.32.0.dev24 → langgraph_runtime_inmem-0.32.0.dev25}/uv.lock +0 -0
|
@@ -2555,7 +2555,7 @@ class Runs(Authenticated):
|
|
|
2555
2555
|
),
|
|
2556
2556
|
created_at=datetime.now(UTC),
|
|
2557
2557
|
updated_at=datetime.now(UTC),
|
|
2558
|
-
values=
|
|
2558
|
+
values=None,
|
|
2559
2559
|
)
|
|
2560
2560
|
|
|
2561
2561
|
await logger.ainfo("Creating thread", thread_id=thread_id)
|
|
@@ -3400,6 +3400,7 @@ class Crons(Authenticated):
|
|
|
3400
3400
|
cron_id: UUID,
|
|
3401
3401
|
schedule: str | None = None,
|
|
3402
3402
|
end_time: datetime | None = None,
|
|
3403
|
+
clear_end_time: bool = False,
|
|
3403
3404
|
enabled: bool | None = None,
|
|
3404
3405
|
on_run_completed: Literal["delete", "keep"] | None = None,
|
|
3405
3406
|
payload: dict | None = None,
|
|
@@ -3423,7 +3424,7 @@ class Crons(Authenticated):
|
|
|
3423
3424
|
filters = await Crons.handle_event(ctx, "update", request_data)
|
|
3424
3425
|
|
|
3425
3426
|
# Check if anything to update
|
|
3426
|
-
has_updates = any(
|
|
3427
|
+
has_updates = clear_end_time or any(
|
|
3427
3428
|
v is not None
|
|
3428
3429
|
for v in [
|
|
3429
3430
|
schedule,
|
|
@@ -3468,7 +3469,9 @@ class Crons(Authenticated):
|
|
|
3468
3469
|
cron["schedule"], datetime.now(UTC), timezone=timezone
|
|
3469
3470
|
)
|
|
3470
3471
|
|
|
3471
|
-
if
|
|
3472
|
+
if clear_end_time:
|
|
3473
|
+
cron["end_time"] = None
|
|
3474
|
+
elif end_time is not None:
|
|
3472
3475
|
cron["end_time"] = end_time
|
|
3473
3476
|
|
|
3474
3477
|
if enabled is not None:
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{langgraph_runtime_inmem-0.32.0.dev24 → langgraph_runtime_inmem-0.32.0.dev25}/pyproject.toml
RENAMED
|
File without changes
|
|
File without changes
|