From 01ea797c130aad37d04b2b3c02d6fc419d4cd860 Mon Sep 17 00:00:00 2001 From: hexoscott <70711990+hexoscott@users.noreply.github.com> Date: Tue, 20 Aug 2024 20:45:58 +0100 Subject: [PATCH] fix for ger update parsing from stream (#995) --- zk/datastream/client/stream_client.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zk/datastream/client/stream_client.go b/zk/datastream/client/stream_client.go index 43f24eb599a..17f849c8fc1 100644 --- a/zk/datastream/client/stream_client.go +++ b/zk/datastream/client/stream_client.go @@ -317,7 +317,7 @@ LOOP: case *types.BatchStart: c.currentFork = parsedProto.ForkId c.entryChan <- parsedProto - case *types.GerUpdateProto: + case *types.GerUpdate: c.entryChan <- parsedProto case *types.BatchEnd: c.entryChan <- parsedProto