Skip to content

Commit

Permalink
feat(*): Migrate from RxJava2 to Reactor
Browse files Browse the repository at this point in the history
  • Loading branch information
loicmathieu committed Jan 29, 2024
1 parent 4838ae9 commit f979fb0
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ dependencies {
compileOnly "io.micronaut:micronaut-inject"
compileOnly "io.micronaut.validation:micronaut-validation"
compileOnly "io.micronaut:micronaut-http-client"
compileOnly "io.micronaut.rxjava2:micronaut-rxjava2"
compileOnly "io.micronaut.reactor:micronaut-reactor"

// kestra
compileOnly group: "io.kestra", name: "core", version: kestraVersion
Expand Down
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 @@ -147,7 +147,7 @@ public ScriptOutput run(RunContext runContext) throws Exception {
.withDockerOptions(this.getDocker())
.withLogConsumer(new AbstractLogConsumer() {
@Override
public void accept(String line, Boolean isStdErr) throws Exception {
public void accept(String line, Boolean isStdErr) {
LogService.parse(runContext, line);
}
});
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 @@ -128,7 +128,7 @@ public ScriptOutput run(RunContext runContext) throws Exception {
CommandsWrapper commands = this.commands(runContext)
.withLogConsumer(new AbstractLogConsumer() {
@Override
public void accept(String line, Boolean isStdErr) throws Exception {
public void accept(String line, Boolean isStdErr) {
LogService.parse(runContext, line);
}
});
Expand Down

0 comments on commit f979fb0

Please sign in to comment.