apply reef identifier batch 0006

Assistant: codex
Assistant-Model: gpt-5.6-sol
Assistant-Session: 01a053ff-1d6f-7fe2-ac1c-a6eb40a42a0c
This commit is contained in:
tegwick 2026-08-31 14:10:44 +02:00
parent d63f8b27e7
commit c52d222cc6
11 changed files with 109 additions and 16 deletions

View file

@ -185,7 +185,7 @@ def main(argv: list[str] | None = None) -> int:
p_sync.add_argument("--path", default=".")
p_sync.add_argument("--slug", default=None)
p_sync.add_argument("--api-base", default=os.environ.get("STATE_HUB_API_BASE", "http://127.0.0.1:8000"))
p_sync.add_argument("--expected-instance-label", default="railliance01")
p_sync.add_argument("--expected-instance-label", default="railiance01")
p_sync.add_argument("--push", action="store_true", help="Push ahead commits before reconciliation")
p_sync.add_argument("--no-commit-identifiers", action="store_true")
p_sync.add_argument("--acknowledge-retirements", action="store_true")
@ -456,7 +456,7 @@ def main(argv: list[str] | None = None) -> int:
p_id_projection.add_argument("--repo", required=True)
p_id_projection.add_argument("--confirm-plan-sha256", required=True)
p_id_projection.add_argument("--api-base", required=True)
p_id_projection.add_argument("--expected-instance-label", default="railliance01")
p_id_projection.add_argument("--expected-instance-label", default="railiance01")
p_id_projection.add_argument(
"--direction", choices=["forward", "reverse"], default="forward"
)

View file

@ -990,7 +990,7 @@ def migrate_repository_projection(
confirm_plan_sha256: str,
api_base: str,
direction: str = "forward",
expected_instance_label: str | None = "railliance01",
expected_instance_label: str | None = "railiance01",
transport: httpx.BaseTransport | None = None,
) -> dict[str, Any]:
"""Apply or reverse the sealed projection half on the authoritative hub."""

View file

@ -73,7 +73,7 @@ def sync_repository_projection(
*,
api_base: str,
repo_slug: str | None = None,
expected_instance_label: str | None = "railliance01",
expected_instance_label: str | None = "railiance01",
commit_identifiers: bool = True,
push: bool = False,
acknowledge_retirements: bool = False,