Skip to content

Commit fbb96aa

Browse files
committed
set concurrency group correctly
1 parent f222f5f commit fbb96aa

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/runtime-common/realm-index-updater.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ export class RealmIndexUpdater {
102102
};
103103
let job = await this.#queue.publish<FromScratchResult>(
104104
`from-scratch-index`,
105-
'indexing',
105+
`indexing:${this.#realm.url}`,
106106
4 * 60,
107107
args,
108108
);
@@ -140,7 +140,7 @@ export class RealmIndexUpdater {
140140
};
141141
let job = await this.#queue.publish<IncrementalResult>(
142142
`incremental-index`,
143-
'indexing',
143+
`indexing:${this.#realm.url}`,
144144
4 * 60,
145145
args,
146146
);

0 commit comments

Comments
 (0)