From 7b42e949a88885c9eea236d667e07aa10a411b49 Mon Sep 17 00:00:00 2001 From: Steve Hetzel Date: Mon, 11 Dec 2023 16:14:16 -0700 Subject: [PATCH] fix: update max query limit env var --- src/org/connection.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/org/connection.ts b/src/org/connection.ts index cbc5838a77..df781e73e1 100644 --- a/src/org/connection.ts +++ b/src/org/connection.ts @@ -382,7 +382,7 @@ export class Connection extends JSForceConnection void Lifecycle.getInstance().emitWarning( `The query result is missing ${ query.totalSize - query.records.length - } records due to a ${maxFetch} record limit. Increase the number of records returned by setting the config value "maxQueryLimit" or the environment variable "SFDX_MAX_QUERY_LIMIT" to ${ + } records due to a ${maxFetch} record limit. Increase the number of records returned by setting the config value "maxQueryLimit" or the environment variable "SF_ORG_MAX_QUERY_LIMIT" to ${ query.totalSize } or greater than ${maxFetch}.` );