You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
net.corda.core.node.services.VaultQueryException:
There are <n> results, which exceeds the limit of 200 for queries that do not specify paging. In order to retrieve these results, provide a `PageSpecification(pageNumber, pageSize)` to the method invoked.
exception is thrown by the following functions implemented in the KeyManagementBackedAccountService:
accountsForHost(host: Party) - when the number of accounts for host is greater than the vault DEFAULT_PAGE_SIZE
ourAccounts() - when the number of accounts for hosted by the node is greater than the vault DEFAULT_PAGE_SIZE
allAccounts() - when the total number of accounts in the node is greater than the vault DEFAULT_PAGE_SIZE
The text was updated successfully, but these errors were encountered:
mevir
changed the title
The KeyManagementBackedAccountService implementation fails to retrieve the accounts when the number of accounts exceeds DEFAULT_PAGE_SIZE
The KeyManagementBackedAccountService implementation fails to retrieve the accounts when the number of accounts exceeds DEFAULT_PAGE_SIZE
Jul 27, 2020
The
exception is thrown by the following functions implemented in the
KeyManagementBackedAccountService
:accountsForHost(host: Party)
- when the number of accounts for host is greater than the vaultDEFAULT_PAGE_SIZE
ourAccounts()
- when the number of accounts for hosted by the node is greater than the vaultDEFAULT_PAGE_SIZE
allAccounts()
- when the total number of accounts in the node is greater than the vaultDEFAULT_PAGE_SIZE
The text was updated successfully, but these errors were encountered: