Browse Source

Fix the issue reported on #12385 (#12969)

Missed setting ConnectionString on queuesettings

Signed-off-by: Andrew Thornton <art27@cantab.net>
tags/v1.13.0-rc1
zeripath 3 years ago
parent
commit
5cfc1f573f
No account linked to committer's email address
1 changed files with 1 additions and 0 deletions
  1. 1
    0
      modules/queue/setting.go

+ 1
- 0
modules/queue/setting.go View File

@@ -43,6 +43,7 @@ func getQueueSettings(name string) (setting.QueueSettings, []byte) {
opts["BlockTimeout"] = q.BlockTimeout
opts["BoostTimeout"] = q.BoostTimeout
opts["BoostWorkers"] = q.BoostWorkers
opts["ConnectionString"] = q.ConnectionString

cfg, err := json.Marshal(opts)
if err != nil {

Loading…
Cancel
Save