Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Catch nil pointer and ignore the related event #2882

Merged
merged 1 commit into from
Feb 24, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions gateway/enforcer/internal/analytics/analytics.go
Original file line number Diff line number Diff line change
Expand Up @@ -124,6 +124,11 @@ func NewAnalytics(cfg *config.Server, configStore *datastore.ConfigStore) *Analy

// Process processes event and publishes the data
func (c *Analytics) Process(event *v3.HTTPAccessLogEntry) {
defer func() {
if r := recover(); r != nil {
c.cfg.Logger.Error(fmt.Errorf("panic occurred: %v", r), "Recovered from panic in Process method")
}
}()
if c.isInvalid(event) {
c.cfg.Logger.Error(nil, "Invalid event received from the access log service")
return
Expand Down
Loading