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
now the same queue is used to do 'canRun' and do 'doRun'
however it make block some scripts unintentionally because e.g. when executing in console some script, then for a little moment enabled scripts will be in queue and they will be in 'queued' state telling the console that it cannot be run because queue is false-positively not idle
possible resolutions:
not use queue to check 'canRun' in ScriptScheduler; just do it sequentially and sync, and then only do 'doRun' async
introduce separate queue only for 'canRun' and existing queue only used for 'doRun'
The text was updated successfully, but these errors were encountered:
now the same queue is used to do 'canRun' and do 'doRun'
however it make block some scripts unintentionally because e.g. when executing in console some script, then for a little moment enabled scripts will be in queue and they will be in 'queued' state telling the console that it cannot be run because queue is false-positively not idle
possible resolutions:
The text was updated successfully, but these errors were encountered: