schema/Builds: use jobset_id instead of jobset name matches
[?]
May 9, 2020, 8:42 PM
VGUFW62F2DVRDMISV7TFO4BWLXKJKINFDVMC52BPZGIF6MSSGJRACDependencies
- [2]
MMBKNEQBLatestSucceededForJob{,set}: Filter with jobset_id - [3]
3HZY24CX* Make jobsets viewable under - [4]
RI4S7SYT* Job status: show the active jobs. - [5]
DEMSSSB2* Controller for jobs which inherits all actions in ListBuilds. So - [6]
UWVMQIAC* Refactoring. - [7]
SJN2QPWH* Big speed-up of the job status page and the channel generation (such - [8]
7ZSVXUGFsequence fix for postgresql - [9]
75XUS62Y* Added a page to quickly see all failed builds and failed evaluations - [10]
L2E6EVE2* Merged the Build and Job tables. - [*]
J5UVLXOK* Start of a basic Catalyst web interface.
Change contents
- replacement in src/lib/Hydra/Controller/Job.pm at line 175
->search({}, {bind => [$c->stash->{jobset}->name, $c->stash->{job}->name]});->search({}, {bind => [$c->stash->{jobset}->id, $c->stash->{job}->name]}); - replacement in src/lib/Hydra/Controller/Jobset.pm at line 165
->search({}, {bind => [$c->stash->{jobset}->name]});->search({}, {bind => [$c->stash->{jobset}->id]}); - replacement in src/lib/Hydra/Schema/Builds.pm at line 625
makeQueries('ForJobset', "and jobset_id = (select id from jobsets j where j.name = ?)");makeQueries('ForJob', "and jobset_id = (select id from jobsets j where j.name = ?) and job = ?");makeQueries('ForJobset', "and jobset_id = ?");makeQueries('ForJob', "and jobset_id = ? and job = ?");