Skip to content

Commit

Permalink
fix: task runner INSTANCE -> instance()
Browse files Browse the repository at this point in the history
  • Loading branch information
loicmathieu committed Aug 5, 2024
1 parent f9d472b commit 7f3ed69
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/io/kestra/plugin/gcp/cli/GCloudCLI.java
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ public class GCloudCLI extends Task implements RunnableTask<ScriptOutput>, Names
@PluginProperty
@Builder.Default
@Valid
private TaskRunner taskRunner = Docker.INSTANCE;
private TaskRunner taskRunner = Docker.instance();

@Schema(title = "The task runner container image, only used if the task runner is container-based.")
@PluginProperty(dynamic = true)
Expand Down

0 comments on commit 7f3ed69

Please sign in to comment.