Skip to content
Open
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 @@ -50,6 +50,9 @@ class PbsServiceFactory {

static void removeContainer(Map<String, String> config) {
def container = containers.get(config)
if (container == null) {
throw new IllegalArgumentException("Unknown or invalid container config: " + config)
}
container.stop()
containers.remove(config)
}
Expand Down
Loading