We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 1870e8c + 3b07de3 commit 4233bb7Copy full SHA for 4233bb7
apis/fluentd/v1alpha1/plugins/params/model.go
@@ -72,6 +72,13 @@ func (ps *PluginStore) Hash() string {
72
c.Store[k] = v
73
}
74
75
+ // Custom plugins don't have stored properties but only contain the config
76
+ // as plain text.
77
+ // Set the content here to avoid generating the same hash code for all
78
+ // custom plugins resulting in only one custom plugin being ever set for
79
+ // one config.
80
+ c.Content = ps.Content
81
+
82
c.InsertChilds(ps.Childs...)
83
return utils.HashCode(c.String())
84
0 commit comments