this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Update log message for inactive accounts in commit and sync event processing

+2 -2
+2 -2
cmd/relay/relay/ingest.go
··· 99 99 } 100 100 101 101 if !acc.IsActive() { 102 - logger.Info("dropping commit message for non-active account", "status", acc.Status, "upstreamStatus", acc.UpstreamStatus) 102 + logger.Info("dropping commit message for inactive-active account", "status", acc.Status, "upstreamStatus", acc.UpstreamStatus) 103 103 eventsWarningsCounter.WithLabelValues(hostname, "inactive-account").Add(1) 104 104 return nil 105 105 } ··· 159 159 } 160 160 161 161 if !acc.IsActive() { 162 - logger.Info("dropping sync message for non-active account", "status", acc.Status, "upstreamStatus", acc.UpstreamStatus) 162 + logger.Info("dropping sync message for inactive-active account", "status", acc.Status, "upstreamStatus", acc.UpstreamStatus) 163 163 eventsWarningsCounter.WithLabelValues(hostname, "inactive-account").Add(1) 164 164 return nil 165 165 }