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 {
69
69
private static final String START_SERVER = "/weblogic-operator/scripts/startServer.sh" ;
70
70
private static final String LIVENESS_PROBE = "/weblogic-operator/scripts/livenessProbe.sh" ;
71
71
72
- private static final String READINESS_PATH = "/weblogic/" ;
72
+ private static final String READINESS_PATH = "/weblogic/ready " ;
73
73
74
74
private final DomainPresenceInfo info ;
75
75
private final WlsDomainConfig domainTopology ;
Original file line number Diff line number Diff line change @@ -278,7 +278,7 @@ public void whenPodCreated_livenessProbeHasDefinedTuning() {
278
278
@ Test
279
279
public void whenPodCreated_readinessProbeHasReadinessCommand () {
280
280
V1HTTPGetAction getAction = getCreatedPodSpecContainer ().getReadinessProbe ().getHttpGet ();
281
- assertThat (getAction .getPath (), equalTo ("/weblogic/" ));
281
+ assertThat (getAction .getPath (), equalTo ("/weblogic/ready " ));
282
282
assertThat (getAction .getPort ().getIntValue (), equalTo (listenPort ));
283
283
}
284
284
You can’t perform that action at this time.
0 commit comments