We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8845772 commit 95ae0cfCopy full SHA for 95ae0cf
src/state/stateQueueManager.ts
@@ -61,7 +61,8 @@ export class StateQueueManager {
61
previousQueueLength[state.name] = queue.length;
62
if (orphanIdx >= 0 && prev === queue.length) {
63
// Wait until two consecutive iterations where no additional states were dequeued successfully.
64
- throw new Error(`Cannot register orphaned state '${state.name}'`);
+ // throw new Error(`Cannot register orphaned state '${state.name}'`);
65
+ return states;
66
} else if (orphanIdx < 0) {
67
orphans.push(state);
68
}
0 commit comments