File tree Expand file tree Collapse file tree 2 files changed +1
-7
lines changed
api/src/main/java/io/kafbat/ui Expand file tree Collapse file tree 2 files changed +1
-7
lines changed Original file line number Diff line number Diff line change @@ -167,12 +167,9 @@ private boolean schemaRegistryConfigured(ClustersProperties.Cluster clusterPrope
167167 }
168168
169169 private ReactiveFailover <KafkaSrClientApi > schemaRegistryClient (ClustersProperties .Cluster clusterProperties ) {
170-
171-
172- //System.out.println("Creating Schema Registry Client for cluster: " + clusterProperties.getName());
170+
173171 var auth = Optional .ofNullable (clusterProperties .getSchemaRegistryAuth ())
174172 .orElse (new ClustersProperties .SchemaRegistryAuth ());
175- //System.out.println("Auth details: " + auth.toString());
176173 WebClient webClient = new WebClientConfigurator ()
177174 .configureSsl (clusterProperties .getSsl (), clusterProperties .getSchemaRegistrySsl ())
178175 .configureBasicAuth (auth .getUsername (), auth .getPassword ())
Original file line number Diff line number Diff line change 1919import javax .annotation .Nullable ;
2020import javax .net .ssl .KeyManagerFactory ;
2121import javax .net .ssl .TrustManagerFactory ;
22- import javax .validation .constraints .Null ;
2322import lombok .SneakyThrows ;
2423import org .openapitools .jackson .nullable .JsonNullableModule ;
2524import org .springframework .http .MediaType ;
@@ -58,8 +57,6 @@ private static ObjectMapper defaultOM() {
5857 }
5958
6059 public WebClientConfigurator configureBearerTokenAuth (@ Nullable String bearerAuthCustomProviderClass ) {
61- //System.out.println("Configuring GCP Bearer Auth in web client");
62- //System.out.println("Bearer Auth Custom Provider Class: " + bearerAuthCustomProviderClass);
6360 if (Objects .equals (bearerAuthCustomProviderClass , GCP_BEARER_AUTH_CUSTOM_PROVIDER_CLASS )) {
6461 builder .filter (createGcpBearerAuthFilter ());
6562 }
You can’t perform that action at this time.
0 commit comments