Skip to content

Commit 9854ed8

Browse files
committed
fix: increase max-fetch default
1 parent b13e473 commit 9854ed8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/shared/remoteSourceTrackingService.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -542,7 +542,7 @@ export class RemoteSourceTrackingService extends ConfigFile<RemoteSourceTracking
542542
}
543543

544544
try {
545-
const results = await this.org.getConnection().tooling.autoFetchQuery<T>(query);
545+
const results = await this.org.getConnection().tooling.autoFetchQuery<T>(query, { maxFetch: 50000 });
546546
return results.records;
547547
} catch (error) {
548548
throw SfdxError.wrap(error as Error);

0 commit comments

Comments
 (0)