flywheel-bootstrap-staging 0.1.9.202601302349__tar.gz → 0.1.9.202602011750__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.
- {flywheel_bootstrap_staging-0.1.9.202601302349 → flywheel_bootstrap_staging-0.1.9.202602011750}/.gitignore +1 -0
- {flywheel_bootstrap_staging-0.1.9.202601302349 → flywheel_bootstrap_staging-0.1.9.202602011750}/PKG-INFO +1 -1
- {flywheel_bootstrap_staging-0.1.9.202601302349 → flywheel_bootstrap_staging-0.1.9.202602011750}/bootstrap/orchestrator.py +5 -1
- {flywheel_bootstrap_staging-0.1.9.202601302349 → flywheel_bootstrap_staging-0.1.9.202602011750}/pyproject.toml +1 -1
- {flywheel_bootstrap_staging-0.1.9.202601302349 → flywheel_bootstrap_staging-0.1.9.202602011750}/README.md +0 -0
- {flywheel_bootstrap_staging-0.1.9.202601302349 → flywheel_bootstrap_staging-0.1.9.202602011750}/bootstrap/__init__.py +0 -0
- {flywheel_bootstrap_staging-0.1.9.202601302349 → flywheel_bootstrap_staging-0.1.9.202602011750}/bootstrap/__main__.py +0 -0
- {flywheel_bootstrap_staging-0.1.9.202601302349 → flywheel_bootstrap_staging-0.1.9.202602011750}/bootstrap/artifacts.py +0 -0
- {flywheel_bootstrap_staging-0.1.9.202601302349 → flywheel_bootstrap_staging-0.1.9.202602011750}/bootstrap/config_loader.py +0 -0
- {flywheel_bootstrap_staging-0.1.9.202601302349 → flywheel_bootstrap_staging-0.1.9.202602011750}/bootstrap/constants.py +0 -0
- {flywheel_bootstrap_staging-0.1.9.202601302349 → flywheel_bootstrap_staging-0.1.9.202602011750}/bootstrap/git_ops.py +0 -0
- {flywheel_bootstrap_staging-0.1.9.202601302349 → flywheel_bootstrap_staging-0.1.9.202602011750}/bootstrap/install.py +0 -0
- {flywheel_bootstrap_staging-0.1.9.202601302349 → flywheel_bootstrap_staging-0.1.9.202602011750}/bootstrap/payload.py +0 -0
- {flywheel_bootstrap_staging-0.1.9.202601302349 → flywheel_bootstrap_staging-0.1.9.202602011750}/bootstrap/prompts.py +0 -0
- {flywheel_bootstrap_staging-0.1.9.202601302349 → flywheel_bootstrap_staging-0.1.9.202602011750}/bootstrap/py.typed +0 -0
- {flywheel_bootstrap_staging-0.1.9.202601302349 → flywheel_bootstrap_staging-0.1.9.202602011750}/bootstrap/runner.py +0 -0
- {flywheel_bootstrap_staging-0.1.9.202601302349 → flywheel_bootstrap_staging-0.1.9.202602011750}/bootstrap/telemetry.py +0 -0
- {flywheel_bootstrap_staging-0.1.9.202601302349 → flywheel_bootstrap_staging-0.1.9.202602011750}/bootstrap.sh +0 -0
- {flywheel_bootstrap_staging-0.1.9.202601302349 → flywheel_bootstrap_staging-0.1.9.202602011750}/examples/config.example.toml +0 -0
- {flywheel_bootstrap_staging-0.1.9.202601302349 → flywheel_bootstrap_staging-0.1.9.202602011750}/tests/test_artifacts.py +0 -0
- {flywheel_bootstrap_staging-0.1.9.202601302349 → flywheel_bootstrap_staging-0.1.9.202602011750}/tests/test_entrypoint.py +0 -0
- {flywheel_bootstrap_staging-0.1.9.202601302349 → flywheel_bootstrap_staging-0.1.9.202602011750}/tests/test_git_ops.py +0 -0
- {flywheel_bootstrap_staging-0.1.9.202601302349 → flywheel_bootstrap_staging-0.1.9.202602011750}/tests/test_orchestrator.py +0 -0
- {flywheel_bootstrap_staging-0.1.9.202601302349 → flywheel_bootstrap_staging-0.1.9.202602011750}/tests/test_prompts.py +0 -0
- {flywheel_bootstrap_staging-0.1.9.202601302349 → flywheel_bootstrap_staging-0.1.9.202602011750}/uv.lock +0 -0
|
@@ -644,13 +644,17 @@ class BootstrapOrchestrator:
|
|
|
644
644
|
self._stop_heartbeats.wait(HEARTBEAT_INTERVAL_SECONDS)
|
|
645
645
|
|
|
646
646
|
def _handle_event(self, event: CodexEvent) -> None:
|
|
647
|
+
extra: dict[str, object] = {}
|
|
648
|
+
if isinstance(event.raw, dict):
|
|
649
|
+
# Preserve structured event data so the server can parse usage.
|
|
650
|
+
extra = {"event": event.raw}
|
|
647
651
|
post_log(
|
|
648
652
|
self.config.server_url,
|
|
649
653
|
self.config.run_id,
|
|
650
654
|
self.config.capability_token,
|
|
651
655
|
level="info",
|
|
652
656
|
message=str(event.raw),
|
|
653
|
-
extra=
|
|
657
|
+
extra=extra,
|
|
654
658
|
)
|
|
655
659
|
if isinstance(event.raw, dict):
|
|
656
660
|
run_id = event.raw.get("run_id")
|
|
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
|
|
File without changes
|
|
File without changes
|
|
File without changes
|