[management] use account request buffer on sync (#3229)

This commit is contained in:
Pascal Fischer
2025-01-24 12:04:50 +01:00
committed by GitHub
parent eb2ac039c7
commit 2605948e01
3 changed files with 29 additions and 25 deletions

View File

@@ -989,7 +989,7 @@ func (am *DefaultAccountManager) getValidatedPeerWithMap(ctx context.Context, is
return peer, emptyMap, nil, nil
}
account, err := am.Store.GetAccount(ctx, accountID)
account, err := am.requestBuffer.GetAccountWithBackpressure(ctx, accountID)
if err != nil {
return nil, nil, nil, err
}