Skip to content

Commit

Permalink
feat: Log warnings when API rate limits exceeded
Browse files Browse the repository at this point in the history
  • Loading branch information
Göran Sander committed May 27, 2023
1 parent 2b08c5e commit c15c45d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/globals.js
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,8 @@ program
'--test-email-from-address <address>',
'send test email from this address. Only relevant when SMTP server allows from address to be set.'
)
.option('--no-qs-connection', "don't connect to Qlik Sense server at all. Run in isolated mode");
.option('--no-qs-connection', "don't connect to Qlik Sense server at all. Run in isolated mode")
.option('--api-rate-limit', 'set the API rate limit, per minute. Default is 100 calls/minute. Set to 0 to disable rate limiting.', 100);

// Parse command line params
program.parse(process.argv);
Expand Down

0 comments on commit c15c45d

Please sign in to comment.