()
| 864 | |
| 865 | |
| 866 | def stack_is_running() -> bool: |
| 867 | app_ok, _ = http_health(APP_HEALTH_URL, timeout=1.5) |
| 868 | proxy_ok, _ = http_health(PROXY_HEALTH_URL, timeout=1.5) |
| 869 | return app_ok and proxy_ok |
| 870 | |
| 871 | |
| 872 | def remote_publish_is_enabled() -> bool: |
nothing calls this directly
no test coverage detected