Skip to content

Commit

Permalink
fix: Fixing reset address for redis
Browse files Browse the repository at this point in the history
Signed-off-by: Vincent Boutour <[email protected]>
  • Loading branch information
ViBiOh committed Aug 11, 2023
1 parent 7aa401c commit 2f674fb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/fibr/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ func newConfig() (configuration, error) {
amqp: amqp.Flags(fs, "amqp"),
amqpThumbnail: amqphandler.Flags(fs, "amqpThumbnail", flags.NewOverride("Exchange", "fibr"), flags.NewOverride("Queue", "fibr.thumbnail"), flags.NewOverride("RoutingKey", "thumbnail_output")),
amqpExif: amqphandler.Flags(fs, "amqpExif", flags.NewOverride("Exchange", "fibr"), flags.NewOverride("Queue", "fibr.exif"), flags.NewOverride("RoutingKey", "exif_output")),
redis: redis.Flags(fs, "redis", flags.NewOverride("Address", "")),
redis: redis.Flags(fs, "redis", flags.NewOverride("Address", []string{})),
disableAuth: flags.New("NoAuth", "Disable basic authentification").DocPrefix("auth").Bool(fs, false, nil),
}, fs.Parse(os.Args[1:])
}

0 comments on commit 2f674fb

Please sign in to comment.