Skip to content

Commit

Permalink
[mq] working branch - merge 4803588 on top of master at f7c2763
Browse files Browse the repository at this point in the history
{"baseBranch":"master","baseCommit":"f7c2763f6522536088ebd49db3b23ee040d2b551","createdAt":"2025-02-26T14:19:49.534743Z","headSha":"480358810637ddecb2a5a162a805c975e6fcfc31","id":"9e59cae0-a14a-4883-b9a9-d172704decb9","priority":"200","pullRequestNumber":"2871","queuedAt":"2025-02-26T14:19:49.533947Z","status":"STATUS_QUEUED"}
  • Loading branch information
dd-mergequeue[bot] authored Feb 26, 2025
2 parents 859365d + 4803588 commit bfc4c29
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions datadog/resource_datadog_synthetics_test_.go
Original file line number Diff line number Diff line change
Expand Up @@ -3836,9 +3836,9 @@ func buildDatadogTestOptions(d *schema.ResourceData) *datadogV1.SyntheticsTestOp

if renotifyInterval, ok := monitorOptions.(map[string]interface{})["renotify_interval"]; ok {
optionsMonitorOptions.SetRenotifyInterval(int64(renotifyInterval.(int)))
}
if renotifyOccurrences, ok := monitorOptions.(map[string]interface{})["renotify_occurrences"]; ok {
optionsMonitorOptions.SetRenotifyOccurrences(int64(renotifyOccurrences.(int)))
if renotifyOccurrences, ok := monitorOptions.(map[string]interface{})["renotify_occurrences"]; ok && renotifyInterval != 0 {
optionsMonitorOptions.SetRenotifyOccurrences(int64(renotifyOccurrences.(int)))
}
}
options.SetMonitorOptions(optionsMonitorOptions)
}
Expand Down

0 comments on commit bfc4c29

Please sign in to comment.