Has anyone noticed a problem with
Code:
waitWithGauge()
?
If so, is this a new thing or has it existed for a while?
I was testing a new script and noticed that the wait time on one of the tasks seemed long. So I ran it again and timed it, sure enough it took
Code:
waitWithGauge(40)
took 47 seconds to complete. So then I wrote a little test procedure and
Code:
waitWithGauge(60)
takes anywhere from 69 to 72 seconds to complete.
Can someone run this on their machine and let me know if you are seeing the same results?
Code:
def timeTest = {
def startTime = 0
def endTime = 0
def totalTime = 0
showButton("Start - 60 second test")
startTime = getTime()
waitWithGauge(60)
endTime = getTime()
totalTime = endTime - startTime
show(totalTime)
showButton("Okay")
}
FYI, I tried the same with a
Code:
wait(60)
and it returned 60 each time.