-
Hello everyone, I have an unusual question to discuss. I've noticed that when a DojoCrashError occurs, the Dojo environment collapses, requiring us to reinitialize it in order to restore normal functionality. However, this process of reinitializing the Dojo environment can be time-consuming and memory-intensive. My question is, is it possible to ensure the continuous operation of the Dojo environment and return to the previous state even when a DojoCrashError is raised? Would it be necessary to make modifications to specific sections of the Dojo source code in order to achieve this? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Unfortunately, I don't see a good way to achieve this without significant modification of the code. DojoCrashError happens often because of non-recoverable errors from Lean. The best way is probably recording all necessary steps before it crashes and trying to replay them with a new Dojo instance. |
Beta Was this translation helpful? Give feedback.
Unfortunately, I don't see a good way to achieve this without significant modification of the code. DojoCrashError happens often because of non-recoverable errors from Lean. The best way is probably recording all necessary steps before it crashes and trying to replay them with a new Dojo instance.