Skip to content

Commit

Permalink
chore: adapt to latest taskrunner specs
Browse files Browse the repository at this point in the history
  • Loading branch information
tchiotludo committed Jan 6, 2025
1 parent 4daec1c commit 27c22da
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/main/java/io/kestra/plugin/dbt/cli/AbstractDbt.java
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ public abstract class AbstractDbt extends Task implements RunnableTask<ScriptOut
@Builder.Default
@PluginProperty
@Valid
protected TaskRunner taskRunner = Docker.builder()
protected TaskRunner<?> taskRunner = Docker.builder()
.type(Docker.class.getName())
.entryPoint(new ArrayList<>())
.build();
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/io/kestra/plugin/dbt/cli/DbtCLI.java
Original file line number Diff line number Diff line change
Expand Up @@ -314,7 +314,7 @@ public class DbtCLI extends AbstractExecScript {
@PluginProperty
@Builder.Default
@Valid
protected TaskRunner taskRunner = Docker.builder()
protected TaskRunner<?> taskRunner = Docker.builder()
.type(Docker.class.getName())
.entryPoint(new ArrayList<>())
.build();
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/io/kestra/plugin/dbt/cli/Setup.java
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ public class Setup extends AbstractExecScript implements RunnableTask<ScriptOutp
@Builder.Default
@PluginProperty
@Valid
protected TaskRunner taskRunner = Docker.instance();
protected TaskRunner<?> taskRunner = Docker.instance();

@Builder.Default
protected Property<String> containerImage = Property.of(DEFAULT_IMAGE);
Expand Down

0 comments on commit 27c22da

Please sign in to comment.