Skip to content

Commit

Permalink
PC-9234 Fix CI/CD security check (#123)
Browse files Browse the repository at this point in the history
  • Loading branch information
BSski committed Oct 26, 2023
1 parent 36f3cec commit 7841a38
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nobl9/resource_slo.go
Original file line number Diff line number Diff line change
Expand Up @@ -1236,7 +1236,7 @@ func unmarshalCloudWatchMetric(metric interface{}) map[string]interface{} {
res["json"] = cwMetric.JSON
dim, _ := json.Marshal(cwMetric.Dimensions)
var dimensions any
json.Unmarshal(dim, &dimensions)
_ = json.Unmarshal(dim, &dimensions)
res["dimensions"] = dimensions
return res
}
Expand Down

0 comments on commit 7841a38

Please sign in to comment.