We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a930557 commit 316d112Copy full SHA for 316d112
internal/controller/controller.go
@@ -76,6 +76,7 @@ func (c *Controller) Start(ctx context.Context) error {
76
envVars := libpf.Set[string]{}
77
splittedEnvVars := strings.Split(c.config.IncludeEnvVars, ",")
78
for _, envVar := range splittedEnvVars {
79
+ envVar = strings.TrimSpace(envVar)
80
if envVar != "" {
81
envVars[envVar] = libpf.Void{}
82
}
0 commit comments