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
This commit is contained in:
Gerhard Tan 2024-02-19 13:03:37 +08:00 committed by GitHub
parent 2af2cf7dbd
commit 9152c59570
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 3 additions and 0 deletions

View File

@ -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
}
}