summaryrefslogtreecommitdiffstats
path: root/modules/queue/setting.go
diff options
context:
space:
mode:
Diffstat (limited to 'modules/queue/setting.go')
-rw-r--r--modules/queue/setting.go3
1 files changed, 2 insertions, 1 deletions
diff --git a/modules/queue/setting.go b/modules/queue/setting.go
index 9ee1af8c7d..9b2c31b783 100644
--- a/modules/queue/setting.go
+++ b/modules/queue/setting.go
@@ -5,12 +5,12 @@
package queue
import (
- "encoding/json"
"fmt"
"strings"
"code.gitea.io/gitea/modules/log"
"code.gitea.io/gitea/modules/setting"
+ jsoniter "github.com/json-iterator/go"
)
func validType(t string) (Type, error) {
@@ -28,6 +28,7 @@ func validType(t string) (Type, error) {
func getQueueSettings(name string) (setting.QueueSettings, []byte) {
q := setting.GetQueueSettings(name)
+ json := jsoniter.ConfigCompatibleWithStandardLibrary
cfg, err := json.Marshal(q)
if err != nil {
log.Error("Unable to marshall generic options: %v Error: %v", q, err)