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 GitHub 5 years ago
parent
commit
db2722c91b
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