b2965e292f
lint / lint (push) Successful in 59s
test / integration-docker (pull_request) Waiting to run
test / unit (pull_request) Has started running
test / image-input-builds (pull_request) Has started running
test / coverage (pull_request) Blocked by required conditions
tracker-policy-pr / check-pr (pull_request) Failing after 10s
12 lines
315 B
Python
12 lines
315 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
|
|
REQUEST_BODY_TIMEOUT_SECONDS = 10.0
|
|
|
|
__all__ = [
|
|
"MAX_BODY_BYTES",
|
|
"ORCHESTRATOR_AUTH_HEADER",
|
|
"REQUEST_BODY_TIMEOUT_SECONDS",
|
|
]
|