Skip to content
Merged
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 @@ -57,6 +57,14 @@ public DevTestUtil(File serverDirectory, File buildDir, boolean container) {
container, null, null, null, 0, false, null, false, null, null, false, null, null, null, false, false, null, null, null, Collections.emptyMap());
}

/**
* Returns null for all container CLI commands to avoid requiring a running container engine.
*/
@Override
protected String execContainerCmdWithPrefix(String command, int timeout, boolean throwExceptionOnError) {
return null;
}

/**
* Sets the container port fields without going through findLocalPort (which calls Docker).
* Only meaningful when container=true.
Expand Down
Loading