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 ebe06f2 commit 3776491
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -230,7 +230,7 @@ protected io.kestra.core.tasks.scripts.ScriptOutput run(RunContext runContext, S

var taskRunner = switch (this.runner) {
case DOCKER -> Docker.from(this.getDockerOptions()).toBuilder().fileHandlingStrategy(Docker.FileHandlingStrategy.MOUNT).build();
case PROCESS -> Process.INSTANCE;
case PROCESS -> Process.instance();
};

ScriptOutput run = new CommandsWrapper(runContext)
Expand Down

0 comments on commit 3776491

Please sign in to comment.