You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
resp, err:=client.Get(fmt.Sprintf("%s/cosmos/tx/v1beta1/txs/%s", e.urlLCD, tx)) //nolint:noctx // TODO FIXME we should propagate context with Deadline here.
b.logger.Error("batch polling encountered an error", zap.Int("errCount", errCount), zap.Error(err))
115
+
b.logger.Error("batch polling encountered an error", zap.Int("errCount", errCount), zap.String("error", safeConnectorErrorForLogging(err, b.Connector)))
108
116
iferrCount>3 {
109
-
errC<-fmt.Errorf("polling encountered too many errors: %w", err) // Note on channel capacity: The watcher will exit anyway
117
+
errC<-fmt.Errorf("polling encountered too many errors: %s", safeConnectorErrorForLogging(err, b.Connector)) // Note on channel capacity: The watcher will exit anyway
0 commit comments