(&self)
| 324 | |
| 325 | #[must_use] |
| 326 | pub fn provider_spiffe_enabled(&self) -> bool { |
| 327 | !self |
| 328 | .provider_spiffe_workload_api_socket_path |
| 329 | .trim() |
| 330 | .is_empty() |
| 331 | } |
| 332 | |
| 333 | pub fn validate_provider_spiffe_workload_api_socket_path(&self) -> Result<(), String> { |
| 334 | validate_provider_spiffe_workload_api_socket_path_value( |
no test coverage detected