From 5ef18cd2dcb6613ab12d9219f49bc65f5446f63f Mon Sep 17 00:00:00 2001 From: etaques Date: Tue, 3 Oct 2023 13:35:32 -0300 Subject: [PATCH] fix (maestro): event source topic name --- maestro/redis/producer/sink_status.go | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/maestro/redis/producer/sink_status.go b/maestro/redis/producer/sink_status.go index 71b30ebad..b2e4b8c78 100644 --- a/maestro/redis/producer/sink_status.go +++ b/maestro/redis/producer/sink_status.go @@ -2,13 +2,14 @@ package producer import ( "context" + "time" + "github.com/go-redis/redis/v8" "go.uber.org/zap" - "time" ) const ( - streamID = "orb.maestro" + streamID = "orb.maestro.sink_status" streamLen = 1000 )