tangled
alpha
login
or
join now
gbl08ma.com
/
didplcbft
24
fork
atom
A very experimental PLC implementation which uses BFT consensus for decentralization
24
fork
atom
overview
issues
pulls
pipelines
Fix minor log spam
gbl08ma.com
1 month ago
f1b03f77
f2fa4ac7
verified
This commit was signed with the committer's
known signature
.
gbl08ma.com
SSH Key Fingerprint:
SHA256:SPYB6pdFx2f9Xq5OXiol0IqoLhhxmlCgkqfaB82rWBw=
+7
-1
1 changed file
expand all
collapse all
unified
split
abciapp
import.go
+7
-1
abciapp/import.go
···
180
180
return EagerFetchFrequencyWhenBusy
181
181
}
182
182
reachedEnd, err := a.fetchInMutex(ctx, a.highestFetchedSeq, OpsPerEagerFetch)
183
183
-
if err != nil {
183
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
185
+
}
186
186
+
187
187
+
select {
188
188
+
case <-ctx.Done():
189
189
+
return EagerFetchFrequencyWhenBusy
190
190
+
default:
185
191
}
186
192
187
193
if a.highestFetchedSeq > a.importProgress {