File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
main/java/oracle/kubernetes/operator/helpers
test/java/oracle/kubernetes/operator/helpers Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -69,7 +69,7 @@ public abstract class PodStepContext extends StepContextBase {
6969 private static final String START_SERVER = "/weblogic-operator/scripts/startServer.sh" ;
7070 private static final String LIVENESS_PROBE = "/weblogic-operator/scripts/livenessProbe.sh" ;
7171
72- private static final String READINESS_PATH = "/weblogic" ;
72+ private static final String READINESS_PATH = "/weblogic/ " ;
7373
7474 private final DomainPresenceInfo info ;
7575 private final WlsDomainConfig domainTopology ;
Original file line number Diff line number Diff line change @@ -278,7 +278,7 @@ public void whenPodCreated_livenessProbeHasDefinedTuning() {
278278 @ Test
279279 public void whenPodCreated_readinessProbeHasReadinessCommand () {
280280 V1HTTPGetAction getAction = getCreatedPodSpecContainer ().getReadinessProbe ().getHttpGet ();
281- assertThat (getAction .getPath (), equalTo ("/weblogic" ));
281+ assertThat (getAction .getPath (), equalTo ("/weblogic/ " ));
282282 assertThat (getAction .getPort ().getIntValue (), equalTo (listenPort ));
283283 }
284284
You can’t perform that action at this time.
0 commit comments