A very experimental PLC implementation which uses BFT consensus for decentralization

Fix minor log spam

gbl08ma.com f1b03f77 f2fa4ac7

verified
+7 -1
+7 -1
abciapp/import.go
··· 180 180 return EagerFetchFrequencyWhenBusy 181 181 } 182 182 reachedEnd, err := a.fetchInMutex(ctx, a.highestFetchedSeq, OpsPerEagerFetch) 183 - if err != nil { 183 + if err != nil && !errors.Is(err, context.Canceled) { 184 184 a.logger.Error("authoritative operations fetcher failed eager fetch", "error", stacktrace.Propagate(err)) 185 + } 186 + 187 + select { 188 + case <-ctx.Done(): 189 + return EagerFetchFrequencyWhenBusy 190 + default: 185 191 } 186 192 187 193 if a.highestFetchedSeq > a.importProgress {