Skip to content

Commit e04206c

Browse files
authored
Merge pull request #27474 from vbotbuildovich/backport-pr-27471-v25.2.x-255
[v25.2.x] kc/configuration: use system trust when no truststore is provided
2 parents ba04d8a + dee0430 commit e04206c

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

src/v/kafka/client/configuration.cc

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -343,7 +343,10 @@ tls_configuration::build_credentials() const {
343343
truststore_str, ss::tls::x509_crt_format::PEM);
344344
return ss::now();
345345
});
346+
} else {
347+
co_await builder.set_system_trust();
346348
}
349+
347350
if (k_store) {
348351
co_await ss::visit(
349352
*k_store,

0 commit comments

Comments
 (0)