Skip to content

Commit 8431c23

Browse files
committed
fix: lint error
Signed-off-by: Tanisha goyal <[email protected]>
1 parent d065e4f commit 8431c23

File tree

2 files changed

+2
-5
lines changed

2 files changed

+2
-5
lines changed

health-events-analyzer/go.mod

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,11 +20,7 @@ require (
2020
)
2121

2222
require (
23-
<<<<<<< HEAD
24-
=======
2523
github.com/hashicorp/errwrap v1.0.0 // indirect
26-
github.com/kr/text v0.2.0 // indirect
27-
>>>>>>> dcc55c6 (feat: detect multiple fatal error)
2824
go.yaml.in/yaml/v2 v2.4.3 // indirect
2925
gopkg.in/yaml.v3 v3.0.1 // indirect
3026
k8s.io/utils v0.0.0-20251002143259-bc988d571ff4 // indirect

health-events-analyzer/pkg/reconciler/reconciler.go

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,6 +100,8 @@ func (r *Reconciler) Start(ctx context.Context) error {
100100
}
101101
}(ctx, event)
102102
}
103+
104+
return nil
103105
}
104106

105107
func (r *Reconciler) processEvent(ctx context.Context, event bson.M) error {
@@ -177,7 +179,6 @@ func (r *Reconciler) handleEvent(ctx context.Context, event *storeconnector.Heal
177179
func (r *Reconciler) processRule(ctx context.Context,
178180
rule config.HealthEventsAnalyzerRule,
179181
event *storeconnector.HealthEventWithStatus) (bool, error) {
180-
181182
// Validate all sequences from DB docs
182183
matchedSequences, err := r.validateAllSequenceCriteria(ctx, rule, *event)
183184
if err != nil {

0 commit comments

Comments
 (0)