mirror of
https://github.com/JohnEstropia/CoreStore.git
synced 2026-01-11 20:00:30 +01:00
_PFFaultHandlerLookupRow Crash #302
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @seanliu1 on GitHub (Jan 9, 2020).
We are experiencing this crash, would love your help to figure out what's going on.
Here is what we are doing
Thanks for your help.
@JohnEstropia commented on GitHub (Jan 9, 2020):
Which line are you getting the exception from? Try to add an Exception Breakpoint and let me know which line it stops
@seanliu1 commented on GitHub (Jan 9, 2020):
At least xcode stops/ crashes at the line when we use fetched objects to construct network request.
Should we access fetched object in different thread?
@JohnEstropia commented on GitHub (Jan 10, 2020):
I'm guessing you omitted some code here, but you can't use transaction objects outside the transaction closure. You can't dispatch them out into another queue.
My suggestion is to use the object values immediately to create the request, and pass the request to the background instead.
Another way is to use
@seanliu1 commented on GitHub (Jan 19, 2020):
thanks