Angus Holder
Angus Holder
If you run the garbage collector in your example, most of that allocated memory is reclaimed: ```python import gc import tracemalloc from prometheus_client import Counter counter_a = Counter('request_count_a', 'request count...
> Hi @angusholder > > Any example on how error messages looked before this PR and how it looks with this change? For `assertErrorDisplayed` it was previously displaying the mismatch...
> Look much better! > > Is there any way, btw, to avoid this ñart? > > > Caused by: junit.framework.AssertionFailedError: 'with error: "My error message 123"' doesn't match the...
> I am using retrofit2 version 2.11.0 in Android with Kotlin. When I make an API call defined in ApiService interface inside a viewModelScope. launch { } coroutine block, and...
Have you recently turned on R8 minification for your app? I got errors similar to that due to R8 optimizing out parts of JNA (which lazysodium is built on), and...