Fulfilling a fault in Core Data throws an exception when app is in background

Hi, I have been looking into Core Data crashes happening when the app is in background and fault is fired due to some processing happening within the app. The stack looks like this where the line 5 just accesses a property of the NSManagedObject's subclass. Unfortunately I don't see any additional information about the exception itself. Therefore, I was wondering if anyone could shed some light on which exception the NSFaultHandler.m:395 is triggering and why.

Exception Type:  EXC_CRASH (SIGABRT)
Exception Codes: 0x0000000000000000, 0x0000000000000000
Triggered by Thread:  10

Last Exception Backtrace:
0   CoreFoundation                	0x1d15b8e38 __exceptionPreprocess + 164 (NSException.m:202)
1   libobjc.A.dylib               	0x1ca7478d8 objc_exception_throw + 60 (objc-exception.mm:356)
2   CoreData                      	0x1d8dda27c _PFFaultHandlerLookupRow + 2508 (NSFaultHandler.m:395)
3   CoreData                      	0x1d8e024e0 _PF_FulfillDeferredFault + 200 (NSFaultHandler.m:915)
4   CoreData                      	0x1d8eb8f1c _sharedIMPL_pvfk_core + 168 (NSManagedObject_Accessors.m:1198)
5   MyApp                       	0x103641928 closure #8 in static ChatChannel.create(fromDTO:depth:) + 304 (ChannelDTO.swift:531)

At first I was thinking if this could be a case of accessing a deleted object while the context is still referencing it, but does not look like it. At least I can't reproduce it (tried deleting objects using a separate context and even with container but no crash happens). Happy to learn about different cases what could trigger exception with this stack.

Notes:

  • Contexts I use are all created with newBackgroundContext method.
Fulfilling a fault in Core Data throws an exception when app is in background
 
 
Q