Actions
action #137132
openLink from scheduled job settings to possible workers
Start date:
2023-09-27
Due date:
% Done:
0%
Estimated time:
Description
Motivation¶
When investigating why a certain job is not assigned, it's tedious to find out which workers would be matching.
- 1. You have to copy the WORKER_CLASS manually
- 2. On the worker page, you cannot always get the expected results because in the worker search field
- 2a. a string like
foobar,baz
might not match a workerfoobar,something,baz
- 2b. a string like
foo
might falsely match a workerfoo_bar
- 2a. a string like
Acceptance Criteria¶
- AC1: Searching on the worker page for a string
foo
matches onlyfoo
and notfoo_bar
(optionally via a checkbox, so that one can still search for substrings) - AC2: Searching on the worker page for a string
foo,bar
matches workers that havefoo
andbar
anywhere in their class. - AC3: One can search for such a string via url, e.g.
/admin/workers?match=foo,bar
, for easy sharing and bookmarking - AC4: A link from a job WORKER_CLASS points to the worker page with that string already in the URL
Suggestions¶
- for AC1: Either make a checkbox for exact matching, or do that by default and allow wildcards
Updated by okurz about 1 year ago
- Target version set to future
As a start how about a popup message if there is simply no matching worker class online?
Actions