There was an error while loading. Please reload this page.
1 parent 5b812e5 commit c1b3179Copy full SHA for c1b3179
1 file changed
apps/webapp/app/v3/services/createBackgroundWorker.server.ts
@@ -604,9 +604,9 @@ async function createWorkerQueues(
604
605
/** Queue rows that back named concurrency limits live under this reserved prefix so
606
* they can never collide with a user's queue names. */
607
-export const CONCURRENCY_LIMIT_QUEUE_PREFIX = "limit/";
+const CONCURRENCY_LIMIT_QUEUE_PREFIX = "limit/";
608
609
-export function concurrencyLimitQueueName(limitName: string): string {
+function concurrencyLimitQueueName(limitName: string): string {
610
const sanitized = sanitizeQueueName(limitName);
611
const name = `${CONCURRENCY_LIMIT_QUEUE_PREFIX}${sanitized}`;
612
if (sanitized.length === 0 || name.length > 128) {
0 commit comments