Skip to content

Commit c1b3179

Browse files
committed
chore(webapp): the limit-name helpers are module-local
1 parent 5b812e5 commit c1b3179

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

apps/webapp/app/v3/services/createBackgroundWorker.server.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -604,9 +604,9 @@ async function createWorkerQueues(
604604

605605
/** Queue rows that back named concurrency limits live under this reserved prefix so
606606
* they can never collide with a user's queue names. */
607-
export const CONCURRENCY_LIMIT_QUEUE_PREFIX = "limit/";
607+
const CONCURRENCY_LIMIT_QUEUE_PREFIX = "limit/";
608608

609-
export function concurrencyLimitQueueName(limitName: string): string {
609+
function concurrencyLimitQueueName(limitName: string): string {
610610
const sanitized = sanitizeQueueName(limitName);
611611
const name = `${CONCURRENCY_LIMIT_QUEUE_PREFIX}${sanitized}`;
612612
if (sanitized.length === 0 || name.length > 128) {

0 commit comments

Comments
 (0)