Skip to content

Commit 5fd7f5e

Browse files
author
Gary James
committed
Fix - Execute steps assertion
1 parent 0282a61 commit 5fd7f5e

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

pkg/resources/job.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -213,7 +213,7 @@ func resourceJobUpdate(ctx context.Context, d *schema.ResourceData, m interface{
213213
job.Settings.Target_Name = targetName
214214
}
215215
if d.HasChange("execute_steps") {
216-
executeSteps := d.Get("execute_steps").([]string)
216+
executeSteps := d.Get("execute_steps").([]interface{})
217217
job.Execute_Steps = executeSteps
218218
}
219219

0 commit comments

Comments
 (0)