Don't trigger evaluation of disabled jobsets
[?]
Sep 18, 2013, 9:25 AM
AMI4DGBKDMQVDLEDZVMA3RGNNJU5CWSGVX5GIPH2BOK6VKQ4DGGACDependencies
- [2]
LZVO64YGMerge in the first bits of the API work - [3]
UMFB2767Hydra/64: Leaving number of builds empty gives DBIx error - [4]
PVIRRARJTurn hiding/unhiding a jobset into a checkbox - [5]
6LETVKRAAfter editing a jobset, push it to the front of the evaluation queue - [6]
ODNCGFQ5* Improved the navigation bar: don't include all projects (since that - [7]
4D4U5IPY* Allow jobsets to be disabled. - [8]
OX6NYJDVSplit viewing and editing a jobset - [9]
QLOLZHRXAllow a per-jobset check interval - [10]
VS3OUK7Dif no emailoverride specified, use empty string - [*]
3HZY24CX* Make jobsets viewable under - [*]
OOQ2D3KC* Refactoring: move fetchInput out of hydra_scheduler into a separate
Change contents
- edit in src/lib/Hydra/Controller/Jobset.pm at line 275[13.2220][3.2074]
my $enabled = defined $c->stash->{params}->{enabled}; - replacement in src/lib/Hydra/Controller/Jobset.pm at line 283
, enabled => defined $c->stash->{params}->{enabled} ? 1 : 0, enabled => $enabled ? 1 : 0 - replacement in src/lib/Hydra/Controller/Jobset.pm at line 289
, triggertime => $jobset->triggertime // time(), triggertime => $enabled ? $jobset->triggertime // time() : undef