baserun-cli 0.1.2__tar.gz → 0.1.3__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.
- {baserun_cli-0.1.2 → baserun_cli-0.1.3}/PKG-INFO +1 -1
- {baserun_cli-0.1.2 → baserun_cli-0.1.3}/baserun_cli/channel.py +6 -2
- {baserun_cli-0.1.2 → baserun_cli-0.1.3}/baserun_cli.egg-info/PKG-INFO +1 -1
- {baserun_cli-0.1.2 → baserun_cli-0.1.3}/pyproject.toml +1 -1
- {baserun_cli-0.1.2 → baserun_cli-0.1.3}/README.md +0 -0
- {baserun_cli-0.1.2 → baserun_cli-0.1.3}/baserun_cli/__init__.py +0 -0
- {baserun_cli-0.1.2 → baserun_cli-0.1.3}/baserun_cli/_vendored/__init__.py +0 -0
- {baserun_cli-0.1.2 → baserun_cli-0.1.3}/baserun_cli/_vendored/base.py +0 -0
- {baserun_cli-0.1.2 → baserun_cli-0.1.3}/baserun_cli/_vendored/cli.py +0 -0
- {baserun_cli-0.1.2 → baserun_cli-0.1.3}/baserun_cli/_vendored/parsers/__init__.py +0 -0
- {baserun_cli-0.1.2 → baserun_cli-0.1.3}/baserun_cli/_vendored/parsers/base.py +0 -0
- {baserun_cli-0.1.2 → baserun_cli-0.1.3}/baserun_cli/_vendored/parsers/bash_agent.py +0 -0
- {baserun_cli-0.1.2 → baserun_cli-0.1.3}/baserun_cli/_vendored/parsers/claude.py +0 -0
- {baserun_cli-0.1.2 → baserun_cli-0.1.3}/baserun_cli/_vendored/parsers/codex.py +0 -0
- {baserun_cli-0.1.2 → baserun_cli-0.1.3}/baserun_cli/main.py +0 -0
- {baserun_cli-0.1.2 → baserun_cli-0.1.3}/baserun_cli/runner.py +0 -0
- {baserun_cli-0.1.2 → baserun_cli-0.1.3}/baserun_cli.egg-info/SOURCES.txt +0 -0
- {baserun_cli-0.1.2 → baserun_cli-0.1.3}/baserun_cli.egg-info/dependency_links.txt +0 -0
- {baserun_cli-0.1.2 → baserun_cli-0.1.3}/baserun_cli.egg-info/entry_points.txt +0 -0
- {baserun_cli-0.1.2 → baserun_cli-0.1.3}/baserun_cli.egg-info/requires.txt +0 -0
- {baserun_cli-0.1.2 → baserun_cli-0.1.3}/baserun_cli.egg-info/top_level.txt +0 -0
- {baserun_cli-0.1.2 → baserun_cli-0.1.3}/setup.cfg +0 -0
|
@@ -253,9 +253,13 @@ class ChannelClient:
|
|
|
253
253
|
)
|
|
254
254
|
|
|
255
255
|
for ev in missing_events:
|
|
256
|
-
|
|
256
|
+
data = ev.get("data", {})
|
|
257
|
+
if data.get("finished") is True:
|
|
258
|
+
ok = await self.publish_event_reliably(run_id, ev)
|
|
259
|
+
else:
|
|
260
|
+
ok = await self.publish_event(run_id, ev)
|
|
257
261
|
if not ok:
|
|
258
|
-
log.error("verify: replay still failed for run %s seq=%s", run_id,
|
|
262
|
+
log.error("verify: replay still failed for run %s seq=%s", run_id, data.get("seq"))
|
|
259
263
|
|
|
260
264
|
async def run(self) -> None:
|
|
261
265
|
"""Main loop: WS subscriber + HTTP claim-task poller, running in parallel.
|
|
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
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|