Files
bot-bottle/bot_bottle/orchestrator/http_contract.py
T
didericis-codex bc716bb5a3
tracker-policy-pr / check-pr (pull_request) Failing after 8s
test / unit (pull_request) Successful in 54s
test / image-input-builds (pull_request) Successful in 58s
test / integration-docker (pull_request) Failing after 59s
test / coverage (pull_request) Has been skipped
lint / lint (push) Successful in 3m10s
fix(orchestrator): keep host client dependency-free
2026-07-27 02:19:28 +00:00

7 lines
232 B
Python

"""Dependency-free constants shared by orchestrator HTTP clients and server."""
ORCHESTRATOR_AUTH_HEADER = "x-bot-bottle-orchestrator-auth"
MAX_BODY_BYTES = 1 * 1024 * 1024
__all__ = ["MAX_BODY_BYTES", "ORCHESTRATOR_AUTH_HEADER"]