Skip to content

Commit

Permalink
chore: fix rabbitmq connection string to remove trailing /
Browse files Browse the repository at this point in the history
  • Loading branch information
bomoko committed Nov 16, 2022
1 parent 6fbde97 commit 78dd3c5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ func main() {
},
},
},
DSN: fmt.Sprintf("amqp://%s:%s@%s/", mqUser, mqPass, mqHost),
DSN: fmt.Sprintf("amqp://%s:%s@%s", mqUser, mqPass, mqHost),
}

ctrl.SetLogger(zap.New(zap.UseFlagOptions(&opts)))
Expand Down

0 comments on commit 78dd3c5

Please sign in to comment.