Skip to content

Commit

Permalink
Merge pull request #30 from abicky/fix-29
Browse files Browse the repository at this point in the history
Fix bug that utern shows same logs repeatedly
  • Loading branch information
yutachaos authored Oct 6, 2021
2 parents 21e3351 + df76213 commit 4064a64
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cache/cache.go
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ func (c *EventCache) Load(logGroupName string, key *string) (ok bool) {
return false
}
cache := v.(map[string]*int64)
_, ok = cache[logGroupName]
_, ok = cache[*key]
return ok
}

Expand Down

0 comments on commit 4064a64

Please sign in to comment.