Skip to content

Commit

Permalink
Fix type mismatch
Browse files Browse the repository at this point in the history
  • Loading branch information
kubalaguna committed Mar 6, 2023
1 parent 3e54fa6 commit d14d0de
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,7 @@ func flattenScheduling(resp *compute.Scheduling) []map[string]interface{} {
schedulingMap["max_run_duration"] = flattenComputeMaxRunDuration(resp.MaxRunDuration)
}
if resp.MaintenanceInterval != "" {
schedulingMap["maintenance_interval"] = *resp.MaintenanceInterval
schedulingMap["maintenance_interval"] = resp.MaintenanceInterval
}
<% end -%>

Expand Down

0 comments on commit d14d0de

Please sign in to comment.