File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed
src/packages/conat/hub/changefeeds Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -6,18 +6,18 @@ export const SUBJECT = "changefeeds.*";
6
6
// If the user refreshes their browser, it is still about a minute
7
7
// before all the changefeeds they had open are free (due to the
8
8
// SERVER_KEEPALIVE time below).
9
- export const MAX_PER_ACCOUNT = 500 ;
10
- export const MAX_GLOBAL = 10000 ;
9
+ export const MAX_PER_ACCOUNT = 1_000 ;
10
+ export const MAX_GLOBAL = 50_000 ;
11
11
12
12
const DEBUG_DEVEL_MODE = false ;
13
13
14
- export let CLIENT_KEEPALIVE = 90000 ;
15
- export let SERVER_KEEPALIVE = 45000 ;
16
- export let KEEPALIVE_TIMEOUT = 10000 ;
14
+ export let CLIENT_KEEPALIVE = 90_000 ;
15
+ export let SERVER_KEEPALIVE = 45_000 ;
16
+ export let KEEPALIVE_TIMEOUT = 15_000 ;
17
17
18
18
if ( DEBUG_DEVEL_MODE ) {
19
19
console . log (
20
- "*** WARNING: Using DEBUB_DEVEL_MODE changefeed parameters!! ***" ,
20
+ "*** WARNING: Using DEBUG_DEVEL_MODE changefeed parameters!! ***" ,
21
21
) ;
22
22
CLIENT_KEEPALIVE = 6000 ;
23
23
SERVER_KEEPALIVE = 3000 ;
You can’t perform that action at this time.
0 commit comments