diff --git a/google-cloud-storage/src/test/java/com/google/cloud/storage/it/runner/registry/TestBench.java b/google-cloud-storage/src/test/java/com/google/cloud/storage/it/runner/registry/TestBench.java index 32557a97bd..3cc9360fde 100644 --- a/google-cloud-storage/src/test/java/com/google/cloud/storage/it/runner/registry/TestBench.java +++ b/google-cloud-storage/src/test/java/com/google/cloud/storage/it/runner/registry/TestBench.java @@ -249,7 +249,14 @@ public void start() { "--publish", gRPCPort + ":9090", String.format(Locale.US, "--name=%s", containerName), - dockerImage); + dockerImage, + "gunicorn", + "--bind=0.0.0.0:9000", + "--worker-class=sync", + "--threads=10", + "--access-logfile=-", + "--keep-alive=0", + "testbench:run()"); process = new ProcessBuilder() .command(command)