Skip to content

Commit

Permalink
Merge pull request #7 from uselagoon/hotfix/fix_rabbitmq_connection_s…
Browse files Browse the repository at this point in the history
…tring

chore: fix rabbitmq connection string to remove trailing /
  • Loading branch information
bomoko authored Nov 16, 2022
2 parents 6fbde97 + 78dd3c5 commit ae8cb85
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 ae8cb85

Please sign in to comment.