File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
docker-java/src/test/java/com/github/dockerjava/cmd Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -23,19 +23,19 @@ public enum FactoryType {
2323 NETTY (true ) {
2424 @ Override
2525 public DockerCmdExecFactory createExecFactory () {
26- return new NettyDockerCmdExecFactory ().withConnectTimeout (10 * 1000 );
26+ return new NettyDockerCmdExecFactory ().withConnectTimeout (30 * 1000 );
2727 }
2828 },
2929 JERSEY (false ) {
3030 @ Override
3131 public DockerCmdExecFactory createExecFactory () {
32- return new JerseyDockerCmdExecFactory ().withConnectTimeout (10 * 1000 );
32+ return new JerseyDockerCmdExecFactory ().withConnectTimeout (30 * 1000 );
3333 }
3434 },
3535 OKHTTP (true ) {
3636 @ Override
3737 public DockerCmdExecFactory createExecFactory () {
38- return new OkHttpDockerCmdExecFactory ().withConnectTimeout (10 * 1000 );
38+ return new OkHttpDockerCmdExecFactory ().withConnectTimeout (30 * 1000 );
3939 }
4040 };
4141
You can’t perform that action at this time.
0 commit comments