From bf2ec9e41c78c6ea0e0f58b9ce770ab0611885b5 Mon Sep 17 00:00:00 2001 From: bryan newbold Date: Fri, 8 Nov 2024 13:52:05 -0800 Subject: [PATCH] hepa: wire up ozone consumption correctly --- cmd/hepa/main.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/cmd/hepa/main.go b/cmd/hepa/main.go index 92560f944..7883d9c29 100644 --- a/cmd/hepa/main.go +++ b/cmd/hepa/main.go @@ -264,9 +264,10 @@ var runCmd = &cli.Command{ // ozone event consumer (if configured) if srv.Engine.OzoneClient != nil { oc := consumer.OzoneConsumer{ - Engine: srv.Engine, Logger: logger.With("subsystem", "ozone-consumer"), RedisClient: srv.RedisClient, + OzoneClient: srv.Engine.OzoneClient, + Engine: srv.Engine, } go func() {