Skip to content

Commit

Permalink
fix condition
Browse files Browse the repository at this point in the history
  • Loading branch information
sonalmahajan15 committed Oct 20, 2023
1 parent f8d23c7 commit b5473b2
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions annotation/full_trigger.go
Original file line number Diff line number Diff line change
Expand Up @@ -178,9 +178,8 @@ func MergeFullTriggers(left []FullTrigger, right ...FullTrigger) []FullTrigger {
if l.equalsModuloGuardMatched(r) {
if l.Consumer.GuardMatched && !r.Consumer.GuardMatched {
updateLeftGuard[i] = true
} else {
skipRight[j] = true
}
skipRight[j] = true
}
}
}
Expand Down

0 comments on commit b5473b2

Please sign in to comment.