From a4ac28f7ee2834beeb6df98c4da0f8728e07a881 Mon Sep 17 00:00:00 2001 From: Seyed Amir Hossein Aqajari Date: Sat, 10 Aug 2019 17:55:39 -0700 Subject: [PATCH] Update turn-on-before-sunset.groovy --- official/turn-on-before-sunset.groovy | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/official/turn-on-before-sunset.groovy b/official/turn-on-before-sunset.groovy index 1c8a5db..74bed7d 100644 --- a/official/turn-on-before-sunset.groovy +++ b/official/turn-on-before-sunset.groovy @@ -56,12 +56,12 @@ def scheduleTurnOn(sunsetString) { //def sunsetTime = Date.parse("yyyy-MM-dd'T'HH:mm:ss.SSS'Z'", sunsetString) //calculate the offset - //def timeBeforeSunset = new Date() + def timeBeforeSunset = new Date() - //log.debug "Scheduling for: $timeBeforeSunset" + log.debug "Scheduling for: $timeBeforeSunset" //schedule this to run one time - runOnce("someTime", turnOn) + runOnce(timeBeforeSunset, turnOn) } def turnOn() { -- 2.34.1