Skip to content

Commit

Permalink
allow throw when making body
Browse files Browse the repository at this point in the history
Signed-off-by: Adrian Cole <[email protected]>
  • Loading branch information
Adrian Cole committed Feb 14, 2024
1 parent 3219bac commit cb4b33c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/src/main/java/zipkin2/reporter/BaseHttpSender.java
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ public abstract class BaseHttpSender<U, B> extends BytesMessageSender.Base {
*
* @since 3.3
*/
protected abstract B newBody(List<byte[]> encodedSpans);
protected abstract B newBody(List<byte[]> encodedSpans) throws IOException;

/**
* Implement to POST spans to the given endpoint.
Expand Down

0 comments on commit cb4b33c

Please sign in to comment.