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
TypeError: undefined is not a function
at StateMachine.selectTransition (XYZ\node_modules\finity\lib\core\StateMachine.js:304:26)
at StateMachine.getTransitionForEvent (XYZ\node_modules\finity\lib\core\StateMachine.js:149:61)
at StateMachine.processEvent (XYZ\node_modules\finity\lib\core\StateMachine.js:121:35)
at XYZ\node_modules\finity\lib\core\StateMachine.js:83:25
at StateMachine.execute (XYZ\node_modules\finity\lib\core\StateMachine.js:98:9)
at StateMachine.handle (XYZ\node_modules\finity\lib\core\StateMachine.js:82:14)
at AdobeMediaEncoder.enqueueJob (XYZ\src\ame.ts:708:27)
at XYZ\testing\test-ame.js:54:26
at _fulfilled (XYZ\node_modules\q\q.js:834:54)
at self.promiseDispatch.done (XYZ\node_modules\q\q.js:863:30)
Works fine in Node 4.4.5
(Just switching versions using nodist)
Apprently this is within selectTransition() where the "transitions" object is JSON.stringify(transitions) -> "[{"targetState":"process","isInternal":false,"actions":[],"condition":null}]" which does not have any find() method so this blows up trying to call "undefined";
Not sure what's going on, but with node 0.12.14 this blows up:
My configuration:
Then I enqueue something and tell the SM to "enqueue":
and BOOM!
Works fine in Node 4.4.5
(Just switching versions using nodist)
Apprently this is within selectTransition() where the "transitions" object is
JSON.stringify(transitions) -> "[{"targetState":"process","isInternal":false,"actions":[],"condition":null}]"
which does not have any find() method so this blows up trying to call "undefined";(And why am I using 0.12.14? Well.. long story)
The text was updated successfully, but these errors were encountered: