Skip to content

Commit

Permalink
fix: increase max-fetch default
Browse files Browse the repository at this point in the history
  • Loading branch information
mshanemc committed Feb 8, 2022
1 parent b13e473 commit 9854ed8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/shared/remoteSourceTrackingService.ts
Expand Up @@ -542,7 +542,7 @@ export class RemoteSourceTrackingService extends ConfigFile<RemoteSourceTracking
}

try {
const results = await this.org.getConnection().tooling.autoFetchQuery<T>(query);
const results = await this.org.getConnection().tooling.autoFetchQuery<T>(query, { maxFetch: 50000 });
return results.records;
} catch (error) {
throw SfdxError.wrap(error as Error);
Expand Down

0 comments on commit 9854ed8

Please sign in to comment.