diff options
Diffstat (limited to 'lib/client/sharder.ml')
| -rw-r--r-- | lib/client/sharder.ml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/client/sharder.ml b/lib/client/sharder.ml index 652358f..8d735b0 100644 --- a/lib/client/sharder.ml +++ b/lib/client/sharder.ml @@ -58,7 +58,7 @@ module Shard = struct let parse frame = match frame with | `Ok s -> Yojson.Basic.from_string s - | `Eof -> raise Invalid_Payload + | `Eof -> raise Invalid_Payload (* This needs to go into reconnect code, or stop using client_ez and handle frames manually *) let push_frame ?payload shard ev = print_endline @@ "Pushing frame. OP: " ^ Opcode.to_string @@ ev; |