kfaraz commented on code in PR #18413:
URL: https://github.com/apache/druid/pull/18413#discussion_r2295084468


##########
embedded-tests/src/test/java/org/apache/druid/testing/embedded/k8s/K3sClusterResource.java:
##########
@@ -129,6 +129,9 @@ protected K3sContainer createContainer()
         // Druid service is discoverable with the Druid service discovery
         portBindings.add(port + ":" + port);
       }
+      Integer exposedPort = service.getDruidPort();
+      container.addExposedPorts(exposedPort);

Review Comment:
   ```suggestion
         int servicePort = service.getDruidPort();
         container.addExposedPorts(servicePort);
   ```



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to