diff options
author | Valery Piashchynski <[email protected]> | 2021-06-02 17:25:09 +0300 |
---|---|---|
committer | Valery Piashchynski <[email protected]> | 2021-06-02 17:25:09 +0300 |
commit | 12c031ce76c505128ebf9daafa91952855f202d4 (patch) | |
tree | 51846c0cd8a452246e383deb2ac00cce9ef1b92c /plugins/redis/fanin.go | |
parent | 352b0f7cfcc1beaeb4d66777f30732f4003ce6d2 (diff) |
- Switch from the json to flatbuffers
Signed-off-by: Valery Piashchynski <[email protected]>
Diffstat (limited to 'plugins/redis/fanin.go')
-rw-r--r-- | plugins/redis/fanin.go | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/plugins/redis/fanin.go b/plugins/redis/fanin.go index 6c9a5650..3082f24f 100644 --- a/plugins/redis/fanin.go +++ b/plugins/redis/fanin.go @@ -64,13 +64,6 @@ func (fi *FanIn) read() { if !ok { return } - //m := &pubsub.Message{} - //err := json.Unmarshal(utils.AsBytes(msg.Payload), m) - //if err != nil { - // fi.log.Error("failed to unmarshal payload", "error", err.Error()) - // continue - //} - fi.out <- message.GetRootAsMessage(utils.AsBytes(msg.Payload), 0) case <-fi.exit: return |