Skip to content

Commit ca269e2

Browse files
committed
Increase remote debug logging rate limit from 10 to 20 logs per second
1 parent 8e92343 commit ca269e2

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

content/wardrive.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ let REMOTE_DEBUG_ENABLED = REMOTE_DEBUG_USER && REMOTE_DEBUG_KEY; // Can be disa
2323
const REMOTE_DEBUG_ENDPOINT = 'https://meshmapper.net/livedebug.php';
2424
const REMOTE_DEBUG_BATCH_MAX = 100; // Maximum logs per batch
2525
const REMOTE_DEBUG_FLUSH_INTERVAL_MS = 15000; // Flush every 15 seconds
26-
const REMOTE_DEBUG_RATE_LIMIT = 10; // Max logs per second
26+
const REMOTE_DEBUG_RATE_LIMIT = 20; // Max logs per second
2727
const REMOTE_DEBUG_RATE_RESET_MS = 1000; // Rate limit reset interval
2828
const REMOTE_DEBUG_GRACE_PERIOD_MS = 5000; // Grace period before rate limiting starts (15 seconds)
2929

0 commit comments

Comments
 (0)