Return the current controller hostname/IP from any compute

This commit is contained in:
grossmj
2021-10-21 21:38:36 +10:30
parent dddfe7c531
commit bb15b13a9d
18 changed files with 215 additions and 198 deletions

View File

@ -56,6 +56,8 @@ compute_api = FastAPI(
version="v3",
)
compute_api.state.controller_host = None
@compute_api.exception_handler(ComputeError)
async def controller_error_handler(request: Request, exc: ComputeError):