Solution
The Wait (ms) and Wait Until Next ms Multiple functions allow your processor to perform other pending tasks by sending the loop to an idle mode until the time has elapsed. When using large numbers as inputs to these VIs, the result can be a long wait time that will cause any change to be read after the time runs out and the cycle executes again.
A simple workaround can be adding an Elapsed Time express VI with a Case Structure to let the cycle run faster without affecting the timed functionality of your code. This solution will poll changes more often and will allow you to stop the loop without having to wait the complete wait time.