Start of TLS related flags.
| 119 | // Start of TLS related flags. |
| 120 | // |
| 121 | static bool validate_pem_bundle_string(const char* flagname, const string& value) { |
| 122 | impala::Status s = impala::ValidatePemBundle(value); |
| 123 | |
| 124 | if (!s.ok()) { |
| 125 | LOG(ERROR) << "Flag '" << flagname << " failed validation: " << s.GetDetail(); |
| 126 | return false; |
| 127 | } |
| 128 | |
| 129 | return true; |
| 130 | } // function validate_pem_bundle_string |
| 131 | |
| 132 | DEFINE_string(otel_trace_ca_cert_path, "", "Path to a file containing CA certificates " |
| 133 | "bundle. Combined with 'otel_trace_ca_cert_string' if both are specified. "); |
no test coverage detected