-
Notifications
You must be signed in to change notification settings - Fork 528
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Getting SIGABRT 6 in Android when running http calls in parallel #2013
Comments
From @tsequeira-vhs on July 27, 2018 14:43 We have attached stripped down version of the code. |
Any update on the issue? |
I had the same issue. At my case the problem was coming from the SecureStorage, which I was accessing async to get a Token from it, before each HTTP request. After eliminating this part, the parallel HTTP calls are working flawlessly. |
We suspect this issue is stale and no longer relevant. It will be closed if no further activity occurs within 14 more days. Any new comment (by anyone, not necessarily the author) will undo this process. |
This issue will now be closed since it had been marked |
From @tsequeira-vhs on July 27, 2018 14:32
Description
We have a Xamarin.Forms app which is crashing with 'signal 6 (SIGABRT), code -6 (SI_TKILL), fault addr -------- java_vm_ext.cc:534] JNI DETECTED ERROR IN APPLICATION: use of deleted global reference 0x3ce2'
We are running multiple calls to web services with HttpClient in parallel using Task.WhenAll()
The crash is random and due to this we are unable to identify the root cause.
Steps to Reproduce
Note: To make the crash more frequent enable gref logging using the following ADB command: 'adb shell setprop debug.mono.log gref'
Expected Behavior
The app should not crash
Actual Behavior
App crashes with 'java_vm_ext.cc:534] JNI DETECTED ERROR IN APPLICATION: use of deleted global reference 0x3ce2'
Basic Information
Logs
ReportLog-1.txt
ReportLog-2.txt
Copied from original issue: xamarin/Xamarin.Forms#3421
The text was updated successfully, but these errors were encountered: