File tree Expand file tree Collapse file tree 2 files changed +2
-6
lines changed Expand file tree Collapse file tree 2 files changed +2
-6
lines changed Original file line number Diff line number Diff line change 77const core = __nccwpck_require__(7484);
88
99// Rate limiting and retry constants
10- const RATE_LIMIT_DELAY = 1500 ; // milliseconds between requests (increased to 1.5s )
10+ const RATE_LIMIT_DELAY = 3000 ; // milliseconds between requests (increased to 3s to avoid rate limiting )
1111const MAX_RETRIES = 3;
1212const RETRY_DELAY = 2000; // 2 second base delay for retries
13- const BATCH_SIZE = 5; // Process 5 flags at a time (not used in sequential processing)
14- const BATCH_DELAY = 2000; // 2 second delay between batches (not used in sequential processing)
1513
1614/**
1715 * Sleep utility function
Original file line number Diff line number Diff line change 11const core = require ( '@actions/core' ) ;
22
33// Rate limiting and retry constants
4- const RATE_LIMIT_DELAY = 1500 ; // milliseconds between requests (increased to 1.5s )
4+ const RATE_LIMIT_DELAY = 3000 ; // milliseconds between requests (increased to 3s to avoid rate limiting )
55const MAX_RETRIES = 3 ;
66const RETRY_DELAY = 2000 ; // 2 second base delay for retries
7- const BATCH_SIZE = 5 ; // Process 5 flags at a time (not used in sequential processing)
8- const BATCH_DELAY = 2000 ; // 2 second delay between batches (not used in sequential processing)
97
108/**
119 * Sleep utility function
You can’t perform that action at this time.
0 commit comments