We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6192213 commit 0039452Copy full SHA for 0039452
apps/webapp/app/services/runsRepository.server.ts
@@ -372,16 +372,6 @@ function applyRunFiltersToQueryBuilder<T>(
372
machines: options.machines,
373
});
374
}
375
-
376
- if (options.queues && options.queues.length > 0) {
377
- queryBuilder.where("queue IN {queues: Array(String)}", { queues: options.queues });
378
- }
379
380
- if (options.machines && options.machines.length > 0) {
381
- queryBuilder.where("machine_preset IN {machines: Array(String)}", {
382
- machines: options.machines,
383
- });
384
385
386
387
export function parseRunListInputOptions(data: any): RunListInputOptions {
0 commit comments