apache / openwhisk-package-alarms

Apache OpenWhisk package that can be used to create periodic, time-based alarms.
https://openwhisk.apache.org/
Apache License 2.0
24 stars 49 forks source link

Make get the strict value correctly when using wsk trigger to get #216

Closed ningyougang closed 4 years ago

ningyougang commented 4 years ago

the strick value using wsk trigger to get doesn't keep consistent for its actual execution time, currently, the stick value using wsk trigget to get is hardcoded here: https://github.com/apache/openwhisk-package-alarms/blob/master/action/alarmWebAction.js#L194

So here, if want to make it correctly, need to change it to the deployment value(process.env.ALARM_DELAY_DEFAULT_STRICT) as well.

style95 commented 4 years ago

@ningyougang Thanks for addressing this.

ningyougang commented 4 years ago

^^