Skip to content

Commit

Permalink
fixes networknt#2077 update the ModifiableContentSinkConduit to log t…
Browse files Browse the repository at this point in the history
…he error when catching an IOException (networknt#2078)
  • Loading branch information
stevehu authored Jan 15, 2024
1 parent 5c6d491 commit 962021c
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -242,6 +242,7 @@ private void executeHttp2WriteThread(XnioWorker workerThread, final PooledByteBu

next.terminateWrites();
} catch (IOException e) {
LOG.error("Failed to execute conduit writes on Worker Thread.", e);
throw new RuntimeException("Failed to execute conduit writes on Worker Thread. " + e.getMessage(), e);
}
});
Expand Down

0 comments on commit 962021c

Please sign in to comment.