Skip to content

Commit

Permalink
switch default error mode to Propagate
Browse files Browse the repository at this point in the history
  • Loading branch information
TylerHelmuth committed Nov 30, 2023
1 parent c06f7b9 commit bccfe55
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/ottl/parser.go
Original file line number Diff line number Diff line change
Expand Up @@ -359,7 +359,7 @@ func WithLogicOperation[K any](logicOp LogicOperation) ConditionSequenceOption[K
func NewConditionSequence[K any](conditions []*Condition[K], telemetrySettings component.TelemetrySettings, options ...ConditionSequenceOption[K]) ConditionSequence[K] {
c := ConditionSequence[K]{
conditions: conditions,
errorMode: IgnoreError,
errorMode: PropagateError,
telemetrySettings: telemetrySettings,
logicOp: Or,
}
Expand Down

0 comments on commit bccfe55

Please sign in to comment.