You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Occasionally (quite rarely) I'm seeing the following log:
okhttp3.OkHttpClient - A connection to https://ingest.lightstep.com/ was leaked. Did you forget to close a response body? To see where this was allocated, set the OkHttpClient logger level to FINE: Logger.getLogger(OkHttpClient.class.getName()).setLevel(Level.FINE);
I'm using lightstep-tracer-jre version 0.30.1 and GRPC.
I'm not setting the URL anywhere in my application, so by the looks of it, it must be the default metrics URL. I haven't been able to reproduce it easily, but looking at the code, I noticed this. It looks like the the response.body is never closed, even though instructed by OkHttp (see e.g. square/okhttp#2311). It is definitely not closed if the response is not 200, but also the parseFromseems to leave it open.
Or am I missing something?
The text was updated successfully, but these errors were encountered:
Occasionally (quite rarely) I'm seeing the following log:
I'm using
lightstep-tracer-jre
version0.30.1
and GRPC.I'm not setting the URL anywhere in my application, so by the looks of it, it must be the default metrics URL. I haven't been able to reproduce it easily, but looking at the code, I noticed this. It looks like the the
response.body
is never closed, even though instructed by OkHttp (see e.g. square/okhttp#2311). It is definitely not closed if the response is not 200, but also theparseFrom
seems to leave it open.Or am I missing something?
The text was updated successfully, but these errors were encountered: