this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

hepa: wire up ozone consumption correctly (#796)

authored by

bnewbold and committed by
GitHub
6e3c2e3e 8ef0c46e

+2 -1
+2 -1
cmd/hepa/main.go
··· 264 264 // ozone event consumer (if configured) 265 265 if srv.Engine.OzoneClient != nil { 266 266 oc := consumer.OzoneConsumer{ 267 - Engine: srv.Engine, 268 267 Logger: logger.With("subsystem", "ozone-consumer"), 269 268 RedisClient: srv.RedisClient, 269 + OzoneClient: srv.Engine.OzoneClient, 270 + Engine: srv.Engine, 270 271 } 271 272 272 273 go func() {