Skip to content

Commit 5daed3f

Browse files
committed
Turn off rebalancing
1 parent 596bf78 commit 5daed3f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

apps/webapp/app/v3/marqs/index.server.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1625,7 +1625,7 @@ function getMarQSClient() {
16251625
defaultEnvConcurrency: env.DEFAULT_ENV_EXECUTION_CONCURRENCY_LIMIT,
16261626
defaultOrgConcurrency: env.DEFAULT_ORG_EXECUTION_CONCURRENCY_LIMIT,
16271627
visibilityTimeoutInMs: 120 * 1000, // 2 minutes,
1628-
enableRebalancing: !env.MARQS_DISABLE_REBALANCING,
1628+
enableRebalancing: false,
16291629
});
16301630
} else {
16311631
console.warn(

apps/webapp/app/v3/marqs/v2.server.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ function getMarQSClient() {
8282
defaultEnvConcurrency: env.V2_MARQS_DEFAULT_ENV_CONCURRENCY, // this is so we aren't limited by the environment concurrency
8383
defaultOrgConcurrency: env.DEFAULT_ORG_EXECUTION_CONCURRENCY_LIMIT,
8484
visibilityTimeoutInMs: env.V2_MARQS_VISIBILITY_TIMEOUT_MS, // 15 minutes
85-
enableRebalancing: env.V2_MARQS_CONSUMER_POOL_ENABLED === "1",
85+
enableRebalancing: false,
8686
});
8787
}
8888

0 commit comments

Comments
 (0)