A very experimental PLC implementation which uses BFT consensus for decentralization
19
fork

Configure Feed

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

Fix minor log spam

gbl08ma f1b03f77 f2fa4ac7

+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 {