We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d118d84 commit ae290e1Copy full SHA for ae290e1
internal/client/job.go
@@ -239,6 +239,12 @@ func readActionValues(rawJob *JobAttributes) map[string]interface{} {
239
generation, _ := strconv.Atoi(rawJob.ActionValue["generation"].(string))
240
rawJob.ActionValue["generation"] = generation
241
}
242
+ case "delay":
243
+ switch rawJob.ActionValue["delay_minutes"].(type) {
244
+ case string:
245
+ delay_minutes, _ := strconv.Atoi(rawJob.ActionValue["delay_minutes"].(string))
246
+ rawJob.ActionValue["delay_minutes"] = delay_minutes
247
+ }
248
case "authorize_security_group_ingress", "revoke_security_group_ingress":
249
toPort := rawJob.ActionValue["to_port"].(float64)
250
rawJob.ActionValue["to_port"] = strconv.Itoa(int(toPort))
0 commit comments