Skip to content

Commit

Permalink
chore: update timeout logic
Browse files Browse the repository at this point in the history
  • Loading branch information
giovannijunseokim committed Apr 12, 2024
1 parent 742df08 commit ff82053
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion app/src/main/java/univ/earthbreaker/namu/data/ApiFactory.kt
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,8 @@ object ApiFactory {
level =
if (BuildConfig.DEBUG) HttpLoggingInterceptor.Level.BODY else HttpLoggingInterceptor.Level.NONE
},
).connectTimeout(10, TimeUnit.MINUTES).readTimeout(10, TimeUnit.MINUTES).build()
).connectTimeout(10, TimeUnit.MINUTES).readTimeout(10, TimeUnit.MINUTES)
.writeTimeout(10, TimeUnit.MINUTES).build()
}

val retrofitForGrowTreeServer: Retrofit by lazy {
Expand Down

0 comments on commit ff82053

Please sign in to comment.