Skip to content

Commit

Permalink
Merge pull request #987 from cw-Guo/fix-fd-parser
Browse files Browse the repository at this point in the history
fix: fix fluentd parser keep_time_key
  • Loading branch information
benjaminhuo authored Nov 14, 2023
2 parents 08b005b + b6a6fde commit 81aa370
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apis/fluentd/v1alpha1/plugins/common/parse_types.go
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ func (p *Parse) Params(_ plugins.SecretLoader) (*params.PluginStore, error) {
ps.InsertPairs("estimate_current_event", fmt.Sprint(*p.EstimateCurrentEvent))
}
if p.KeepTimeKey != nil {
ps.InsertPairs("keep_timeout", fmt.Sprint(*p.KeepTimeKey))
ps.InsertPairs("keep_time_key", fmt.Sprint(*p.KeepTimeKey))
}
if p.Timeout != nil {
ps.InsertPairs("timeout", fmt.Sprint(*p.Timeout))
Expand Down

0 comments on commit 81aa370

Please sign in to comment.