Skip to content

Commit 395fbd7

Browse files
authored
fix: bump up router queue size and processing speed (#262)
This PR increases the router queue size and processing speed to 4096 and 1024 respectively, which were reverted on 4c74067.
1 parent 4c74067 commit 395fbd7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Router Constants
22
export const ROUTER_CONSTANTS = {
3-
PACKET_QUEUE_MAX_SIZE: 1024,
4-
PROCESSING_SPEED: 8,
3+
PACKET_QUEUE_MAX_SIZE: 4096,
4+
PROCESSING_SPEED: 1024,
55
} as const;

0 commit comments

Comments
 (0)