Browse Source

[공통][New] API 타임아웃 시간 늘려줌 24시간

hyodong.min 6 years ago
parent
commit
d41bbe4b92

+ 1 - 2
app/src/common/java/kr/co/zumo/app/lifeplus/network/api/LifeplusAPIService.java

@@ -117,8 +117,7 @@ import retrofit2.http.Part;
 public class LifeplusAPIService extends LifeplusRetrofitService implements LifeplusAPI {
 
   private final String API_URL;
-  private final static int TIMEOUT_SHORT = 300000000;
-  // private final static int TIMEOUT_LONG = 30000;
+  private final static int TIMEOUT_SHORT = 86400000;
 
   public LifeplusAPIService() {
     API_URL = NetworkConfig.getHostUrl() + ":" + NetworkConfig.getHostPort() + "/";