reduce MaxTimeFetchingAncestors from 100ms to 50ms

This commit is contained in:
Dan Laine 2020-06-23 15:08:15 -04:00
parent 55079aa893
commit 7f5693dfd3
1 changed files with 1 additions and 1 deletions

View File

@ -24,7 +24,7 @@ const (
var (
// MaxTimeFetchingAncestors is the maximum amount of time to spend fetching vertices during a call to GetAncestors
MaxTimeFetchingAncestors = 100 * time.Millisecond
MaxTimeFetchingAncestors = 50 * time.Millisecond
)
// Bootstrapper implements the Engine interface.