()
| 48 | log.info("Subdomain requested but not yet ready", hypothesisId="XRAY") |
| 49 | return "Not Ready", 503 |
| 50 | return config.direct_subdomain |
| 51 | |
| 52 | @self.app.route("/warps") |
| 53 | def get_warps(): |
| 54 | if not config.warps_ready: |
| 55 | abort(404) |
| 56 | return json.dumps(config.warps, indent=4) |
| 57 |
nothing calls this directly
no outgoing calls
no test coverage detected