Reply To: problems with timeout

PennController for IBEX Forums Support problems with timeout Reply To: problems with timeout

#10499
Jeremy
Keymaster

Hi Noelia,

All the Timer elements in your trial are started and waited for upon creation: defaultTimer.start().wait()

This applies to the one named “hurry” too, so newTimer("hurry", 1000).log().start() implicitly stands for newTimer("hurry", 1000).start().wait().log().start()

Remove .wait() from the default commands, and include it explicitly where you need it

Jeremy