c472deafaf
test / integration-docker (pull_request) Has been cancelled
test / unit (pull_request) Successful in 1m4s
test / coverage (pull_request) Has been skipped
test / image-input-builds (pull_request) Failing after 13m41s
tracker-policy-pr / check-pr (pull_request) Failing after 12m38s
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",
|
|
]
|