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
Since a few versions of Pharo 13 now when I revert something in the commit window of Iceberg I get a debugger saying that an entity of the name of what I removed was not found in a collection.
This was not happening recently
The text was updated successfully, but these errors were encountered:
"find the context on stack for which this method's is sender"
[ onDoCtx sender == thisCtx ] whileFalse: [
onDoCtx := onDoCtx sender.
onDoCtx ifNil: [ "Can't find our home context. seems like we're already forked
and handling another exception in new thread. In this case, just pass it through handler."
^ handlerAction cull: ex ] ].
bottom := [ Processor terminateRealActive ] asContext.
onDoCtx privSender: bottom.
handler := [ handlerAction cull: ex ] asContext.
handler privSender: thisContext sender.
(Process forContext: handler priority: Processor activePriority) resume.
"cut the stack of current process"
thisContext privSender: thisCtx.
nil ] in FullBlockClosure(BlockClosure)>>on:fork: in Block: [ Processor terminateRealActive ]
try writing a test reproducing the issue. I understand that it's difficult to write a test for code we don't know, but I think there are great things to learn if we make an effort to test it.
if you have a test + the cause => you can try to make a fix!
Since a few versions of Pharo 13 now when I revert something in the commit window of Iceberg I get a debugger saying that an entity of the name of what I removed was not found in a collection.
This was not happening recently
The text was updated successfully, but these errors were encountered: