We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2ebd13b commit b518129Copy full SHA for b518129
src/main/java/oracle/kubernetes/operator/Main.java
@@ -1037,9 +1037,7 @@ public NextAction apply(Packet packet) {
1037
p.put(ProcessingConstants.SERVER_NAME, ssi.serverConfig.getName());
1038
p.put(ProcessingConstants.PORT, ssi.serverConfig.getListenPort());
1039
ServerStartup ss = ssi.serverStartup;
1040
- if (ss != null) {
1041
- p.put(ProcessingConstants.NODE_PORT, ss.getNodePort());
1042
- }
+ p.put(ProcessingConstants.NODE_PORT, ss != null ? ss.getNodePort() : null);
1043
1044
startDetails.add(new StepAndPacket(bringManagedServerUp(ssi, null), p));
1045
}
0 commit comments