Ver Fonte

fix nil map error when using plugin headers in legacy format (#3996)

* fix nil map error when using plugin headers in legacy format

* create map on demand

* better initialization
Gerhard Tan há 11 meses atrás
pai
commit
9152c59570
1 ficheiros alterados com 3 adições e 0 exclusões
  1. 3 0
      pkg/config/legacy/conversion.go

+ 3 - 0
pkg/config/legacy/conversion.go

@@ -175,6 +175,9 @@ func transformHeadersFromPluginParams(params map[string]string) v1.HeaderOperati
 			continue
 		}
 		if k = strings.TrimPrefix(k, "plugin_header_"); k != "" {
+			if out.Set == nil {
+				out.Set = make(map[string]string)
+			}
 			out.Set[k] = v
 		}
 	}