All "waits" PENDING


#23

Still messed up 24 hours later.
So this is a SmartThings issue not a WebCore issue?


#24

Same here. All of my pistons that have wait commands in them are broken. I took out a wait command on one of them and it worked just fine. Added the wait command back in and it does not execute past the wait. My lights have been staying on for several days now. I hope someone figures out what is going on with WebCore.

-S1930


No pistons are executing
#25

I honestly don’t know for sure, but if history is any indication, this is on ST.


#26

Seems to be working now.


#27

Just turned everything back on and it looks like some are working. I will have to wait for night time to see if all return to normal.


#28

I learned a long time ago, to never make any major changes to my code right before the weekend… LOL


#29

For the few I’ve tested so far, all seems to be working again.


#30

Same


#31

Yes, they seem to be working. start rant/Why did we have to indur the inconvenience without an explanation?/end rant. Sure wasted a lot of our time.


#32

I am experiencing this exact issue with all “waits” going into pending and then counting up…

Can anyone confirm if they are still experiencing issues with “waits”?


#33

The “counting up” is usually just a browser bug, and typically has no bearing on what is really going to happen.

Pressing Ctrl-F5 to hard refresh your browser should update the display.


#34

THANKS. Maybe the count up is a bug then, but the Piston is triggering and it still seems like the wait is where it’s getting stuck. Can I ask you to look at the above Piston and see if there is something else that could be causing it to go to pending?

@WCmore


#35

I do not use “WHEN TRUE” or “WHEN FALSE” like that…
The general structure I follow is something like:

IF switch changes to off  <-- Trigger, so no need to force subscribe
Then
    With Switch 2 & Switch 23  (TCP set to Never)
        Wait 10 sec
        Turn on
        Send PUSH
    END WITH
END IF