-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Buffer: Fix error about compressing already compressed ES
When setting `compress gzip` of buffer, and it tries to process CompressedMessagePackEventStream, the following error occurs. [error]: xxx unexpected error on reading data host="xxx" port=xxx error_class=ArgumentError error="unknown keyword: :packer" This is caused by the signature unmatch in c6c6c03. A possible use case is a two-stage transfer. Forwarder1(out_forward) -> Forwarder2(in_forward, out_forward) -> Aggregator(in_forward) In this case, Forwarder2 should process the data of `CompressedMessagePackEventStream` as is (i.e. without decompressing) and re-transfer the data to Aggregator. Signed-off-by: Daijiro Fukuda <[email protected]>
- Loading branch information
Showing
2 changed files
with
33 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters