Skip to content

Commit

Permalink
Properly use close after push
Browse files Browse the repository at this point in the history
  • Loading branch information
benmoriceau committed Oct 2, 2023
1 parent 0fb85bf commit 0cfe7a1
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ public void close(final boolean hasFailed, final Consumer<AirbyteMessage> output

public void closeAfterPush() {
try {
this.writer.close(false);
this.writer.closeAfterPush();
} catch (IOException e) {
throw new RuntimeException(e);
}
Expand Down

0 comments on commit 0cfe7a1

Please sign in to comment.