Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ public abstract class PodStepContext extends StepContextBase {
private static final String START_SERVER = "/weblogic-operator/scripts/startServer.sh";
private static final String LIVENESS_PROBE = "/weblogic-operator/scripts/livenessProbe.sh";

private static final String READINESS_PATH = "/weblogic";
private static final String READINESS_PATH = "/weblogic/";

private final DomainPresenceInfo info;
private final WlsDomainConfig domainTopology;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -278,7 +278,7 @@ public void whenPodCreated_livenessProbeHasDefinedTuning() {
@Test
public void whenPodCreated_readinessProbeHasReadinessCommand() {
V1HTTPGetAction getAction = getCreatedPodSpecContainer().getReadinessProbe().getHttpGet();
assertThat(getAction.getPath(), equalTo("/weblogic"));
assertThat(getAction.getPath(), equalTo("/weblogic/"));
assertThat(getAction.getPort().getIntValue(), equalTo(listenPort));
}

Expand Down