fix challenges sometimes not loading

This commit is contained in:
Phillip Thelen 2017-10-31 11:33:55 +01:00
parent 176cc7d0ee
commit f24936338c

View file

@ -109,6 +109,7 @@ import java.util.Date;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import java.util.concurrent.TimeUnit;
import javax.net.ssl.SSLException;
@ -201,6 +202,7 @@ public class ApiClientImpl implements Action1<Throwable>, ApiClient {
lastAPICallURL = original.url().toString();
return chain.proceed(request);
})
.readTimeout(45, TimeUnit.SECONDS)
.build();
Server server = new Server(this.hostConfig.getAddress());