mirror of
https://github.com/stablyai/orca.git
synced 2026-09-22 16:02:32 +00:00
Phase 6 of the relay split: the relay's deploy/operate surface moves under cloud/ with 24 cloud-* workflows gated on ORCA_CLOUD_OPERATIONS_ENABLED, the Cloud SQL rollout lease action, the relay Terraform root (dual-accept identities for both repositories), scripts, docs, CODEOWNERS, and a terraform validate job in Cloud Verify.
11 lines
267 B
TypeScript
11 lines
267 B
TypeScript
export const RELAY_CLOSE_CODE = {
|
|
BAD_OUTER_CREDENTIAL: 4401,
|
|
HOST_OFFLINE: 4404,
|
|
PEER_DROPPED: 4408,
|
|
WRONG_CELL: 4409,
|
|
LIMIT_EXCEEDED: 4429,
|
|
DRAINING: 4503
|
|
} as const
|
|
|
|
export type RelayCloseCode = (typeof RELAY_CLOSE_CODE)[keyof typeof RELAY_CLOSE_CODE]
|