We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 033af31 commit 09a3cc0Copy full SHA for 09a3cc0
src/test/groovy/org/prebid/server/functional/testcontainers/PbsServiceFactory.groovy
@@ -50,6 +50,9 @@ class PbsServiceFactory {
50
51
static void removeContainer(Map<String, String> config) {
52
def container = containers.get(config)
53
+ if (container == null) {
54
+ throw new IllegalArgumentException("Unknown or invalid container config: " + config)
55
+ }
56
container.stop()
57
containers.remove(config)
58
}
0 commit comments