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 8d2166d commit 6ed3e86Copy full SHA for 6ed3e86
injectionApi/src/main/java/com/socketLabs/injectionApi/core/HttpRequest.java
@@ -127,6 +127,9 @@ private Call BuildClientCall() {
127
128
if (this.proxy != null)
129
client = new OkHttpClient.Builder()
130
+ .connectTimeout(this.timeout, TimeUnit.SECONDS)
131
+ .writeTimeout(this.timeout, TimeUnit.SECONDS)
132
+ .readTimeout(this.timeout, TimeUnit.SECONDS)
133
.callTimeout(this.timeout, TimeUnit.SECONDS)
134
.proxy(this.proxy)
135
.build();
0 commit comments