ФАТАЛЬНОЕ ИСКЛЮЧЕНИЕ: во время запроса на модернизацию сети: Kotlin Coroutine - PullRequest
0 голосов
/ 07 ноября 2019

Я получаю фатальное исключение при выполнении вызова API с использованием сопрограммы и модернизации в Android Kotlin. И приложение аварийно завершает работу с приведенным ниже исключением.

E/AndroidRuntime: FATAL EXCEPTION: DefaultDispatcher-worker-7
Process: com.jamhub.barbeque, PID: 18525
java.net.SocketTimeoutException: timeout
    at okhttp3.internal.http2.Http2Stream$StreamTimeout.newTimeoutException(Http2Stream.java:656)
    at okhttp3.internal.http2.Http2Stream$StreamTimeout.exitAndThrowIfTimedOut(Http2Stream.java:664)
    at okhttp3.internal.http2.Http2Stream.takeHeaders(Http2Stream.java:153)
    at okhttp3.internal.http2.Http2Codec.readResponseHeaders(Http2Codec.java:131)
    at okhttp3.internal.http.CallServerInterceptor.intercept(CallServerInterceptor.java:88)
    at okhttp3.internal.http.RealInterceptorChain.proceed(RealInterceptorChain.java:147)
    at okhttp3.internal.connection.ConnectInterceptor.intercept(ConnectInterceptor.java:45)
    at okhttp3.internal.http.RealInterceptorChain.proceed(RealInterceptorChain.java:147)
    at okhttp3.internal.http.RealInterceptorChain.proceed(RealInterceptorChain.java:121)
    at okhttp3.internal.cache.CacheInterceptor.intercept(CacheInterceptor.java:93)
    at okhttp3.internal.http.RealInterceptorChain.proceed(RealInterceptorChain.java:147)
    at okhttp3.internal.http.RealInterceptorChain.proceed(RealInterceptorChain.java:121)
    at okhttp3.internal.http.BridgeInterceptor.intercept(BridgeInterceptor.java:93)
    at okhttp3.internal.http.RealInterceptorChain.proceed(RealInterceptorChain.java:147)
    at okhttp3.internal.http.RetryAndFollowUpInterceptor.intercept(RetryAndFollowUpInterceptor.java:126)
    at okhttp3.internal.http.RealInterceptorChain.proceed(RealInterceptorChain.java:147)
    at okhttp3.internal.http.RealInterceptorChain.proceed(RealInterceptorChain.java:121)

Попытка добавления времени ожидания, CoroutineExceptionHandler

val client = OkHttpClient().newBuilder().addInterceptor(object : Interceptor {
                    override fun intercept(chain: Interceptor.Chain): Response {
                        val request = chain.request()
                            .newBuilder()
                            .build()
                        return chain.proceed(request)
                    }
                }).callTimeout(30, TimeUnit.SECONDS)
                    .connectTimeout(10, TimeUnit.SECONDS)
                    .writeTimeout(10, TimeUnit.SECONDS)
                    .readTimeout(30, TimeUnit.SECONDS)
                    .build()

                retrofitSocial = Retrofit.Builder()
                    .baseUrl(BuildConfig.BASE_URL)
                    .addConverterFactory(GsonConverterFactory.create())
                    .client(client)
                    .build()

Не должно произойти сбой, если исключение возникло в идеале, оно должно вернуть ошибку запроса.

1 Ответ

0 голосов
/ 07 ноября 2019

В соответствии с ошибкой, приводящей к сбою приложения - в логике вызовов вы пытаетесь поймать неправильную вещь :) Она должна быть сформирована следующим образом:

try {
    val response = api?.generateOTP(otpRequestBody)
    withContext(Dispatchers.Main) { 
         when (response?.code()) { } } 
catch (e: IOException) { 
}  /* there are many exceptions thrown by Retrofit, all are subclasses of IOException */

Так как это не response?.code(), это выбрасываетисключение, но api?.generateOTP(otpRequestBody).

Что касается самого тайм-аута - у вас может быть неправильный URL, слабое подключение к Интернету, вам нужно будет предоставить нам больше информации, чтобы выяснить причину :)

Или вы можете попробовать CoroutineExceptionHandler:

val exceptionHandler = CoroutineExceptionHandler{_ , throwable-> 
 throwable.printStackTrace()
}

//when you make request:

scope.launch(Dispatchers.IO + exceptionHandler ){

}
...