(value: str | None)
| 263 | |
| 264 | |
| 265 | def truthy_env_value(value: str | None) -> bool: |
| 266 | return value is not None and value.strip().lower() in {"1", "true", "yes", "on"} |
| 267 | |
| 268 | |
| 269 | def dapr_sidecar_available(env: Mapping[str, str], timeout: float = 0.5) -> bool: |
no outgoing calls
no test coverage detected