Skip to content

Commit

Permalink
fix: update max query limit env var
Browse files Browse the repository at this point in the history
  • Loading branch information
shetzel committed Dec 11, 2023
1 parent 3ee7e87 commit 7b42e94
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/org/connection.ts
Original file line number Diff line number Diff line change
Expand Up @@ -382,7 +382,7 @@ export class Connection<S extends Schema = Schema> extends JSForceConnection<S>
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}.`
);
Expand Down

3 comments on commit 7b42e94

@svc-cli-bot
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Logger Benchmarks - ubuntu-latest

Benchmark suite Current: 7b42e94 Previous: cb16ad0 Ratio
Child logger creation 473476 ops/sec (±1.63%) 479166 ops/sec (±0.86%) 1.01
Logging a string on root logger 837718 ops/sec (±9.96%) 812649 ops/sec (±7.66%) 0.97
Logging an object on root logger 634233 ops/sec (±7.49%) 657449 ops/sec (±6.36%) 1.04
Logging an object with a message on root logger 27285 ops/sec (±182.69%) 5161 ops/sec (±220.46%) 0.19
Logging an object with a redacted prop on root logger 536912 ops/sec (±6.39%) 457823 ops/sec (±6.26%) 0.85
Logging a nested 3-level object on root logger 25370 ops/sec (±183.31%) 387293 ops/sec (±7.32%) 15.27

This comment was automatically generated by workflow using github-action-benchmark.

@svc-cli-bot
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Performance Alert ⚠️

Possible performance regression was detected for benchmark 'Logger Benchmarks - ubuntu-latest'.
Benchmark result of this commit is worse than the previous benchmark result exceeding threshold 2.

Benchmark suite Current: 7b42e94 Previous: cb16ad0 Ratio
Logging a nested 3-level object on root logger 25370 ops/sec (±183.31%) 387293 ops/sec (±7.32%) 15.27

This comment was automatically generated by workflow using github-action-benchmark.

@svc-cli-bot
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Logger Benchmarks - windows-latest

Benchmark suite Current: 7b42e94 Previous: cb16ad0 Ratio
Child logger creation 339114 ops/sec (±0.51%) 348651 ops/sec (±0.53%) 1.03
Logging a string on root logger 778581 ops/sec (±6.97%) 870994 ops/sec (±6.77%) 1.12
Logging an object on root logger 604767 ops/sec (±6.60%) 659184 ops/sec (±7.94%) 1.09
Logging an object with a message on root logger 7066 ops/sec (±202.99%) 1763 ops/sec (±276.43%) 0.25
Logging an object with a redacted prop on root logger 488369 ops/sec (±6.26%) 458062 ops/sec (±12.46%) 0.94
Logging a nested 3-level object on root logger 313247 ops/sec (±5.64%) 323977 ops/sec (±7.18%) 1.03

This comment was automatically generated by workflow using github-action-benchmark.

Please sign in to comment.