From 3132c4609404bf6bac2bbb5b5514b159316f4bfa Mon Sep 17 00:00:00 2001 From: Kyle Kingsbury Date: Wed, 16 May 2012 12:59:50 -0700 Subject: [PATCH] EventDsl#sendWithAck() throws MsgTooLargeEx. --- src/main/java/com/aphyr/riemann/client/EventDSL.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/com/aphyr/riemann/client/EventDSL.java b/src/main/java/com/aphyr/riemann/client/EventDSL.java index f400148..4ca3b1e 100644 --- a/src/main/java/com/aphyr/riemann/client/EventDSL.java +++ b/src/main/java/com/aphyr/riemann/client/EventDSL.java @@ -126,7 +126,7 @@ public EventDSL ttl(float ttl) { return this; } - public Boolean sendWithAck() throws IOException, ServerError, MsgTooLargeException { + public Boolean sendWithAck() throws IOException, ServerError, MsgTooLargeException { return client.sendEventsWithAck(builder.build()); }