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

@ -78,7 +78,7 @@ def get_application() -> FastAPI:
application.add_event_handler("shutdown", tasks.create_shutdown_handler(application))
application.include_router(index.router, tags=["Index"])
application.include_router(controller.router, prefix="/v3")
application.mount("/v3/compute", compute_api)
application.mount("/v3/compute", compute_api, name="compute")
return application