From 85ba13a44ebbd318cafbc3fa4428b6150e3c6081 Mon Sep 17 00:00:00 2001 From: chandumlg <54652834+chandumlg@users.noreply.github.com> Date: Wed, 7 Dec 2022 15:41:58 +0530 Subject: [PATCH] chore: remove shopify autoreload (#2784) --- gateway/webhook/configuration.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gateway/webhook/configuration.go b/gateway/webhook/configuration.go index 038a7e10c2..bd7d25ea8f 100644 --- a/gateway/webhook/configuration.go +++ b/gateway/webhook/configuration.go @@ -22,7 +22,7 @@ func loadConfig() { // Max retry attempts to source transformer config.RegisterIntConfigVariable(5, &webhookRetryMax, false, 1, "Gateway.webhook.maxRetry") // Parse all query params from sources mentioned in this list - config.RegisterStringSliceConfigVariable(make([]string, 0), &sourceListForParsingParams, true, "Gateway.webhook.sourceListForParsingParams") + config.RegisterStringSliceConfigVariable(make([]string, 0), &sourceListForParsingParams, false, "Gateway.webhook.sourceListForParsingParams") // lowercasing the strings in sourceListForParsingParams for i, s := range sourceListForParsingParams { sourceListForParsingParams[i] = strings.ToLower(s)