Skip to content

Commit

Permalink
Merge pull request #757 from grahamc/fixup-migration-p2
Browse files Browse the repository at this point in the history
schema/Builds: use jobset_id instead of jobset name matches
  • Loading branch information
edolstra committed May 13, 2020
2 parents 301e4e0 + 548fd8e commit 16ecd4f
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/lib/Hydra/Controller/Job.pm
Expand Up @@ -172,7 +172,7 @@ sub get_builds : Chained('job') PathPart('') CaptureArgs(0) {
my ($self, $c) = @_;
$c->stash->{allBuilds} = $c->stash->{job}->builds;
$c->stash->{latestSucceeded} = $c->model('DB')->resultset('LatestSucceededForJob')
->search({}, {bind => [$c->stash->{jobset}->name, $c->stash->{job}->name]});
->search({}, {bind => [$c->stash->{jobset}->id, $c->stash->{job}->name]});
$c->stash->{channelBaseName} =
$c->stash->{project}->name . "-" . $c->stash->{jobset}->name . "-" . $c->stash->{job}->name;
}
Expand Down
2 changes: 1 addition & 1 deletion src/lib/Hydra/Controller/Jobset.pm
Expand Up @@ -162,7 +162,7 @@ sub get_builds : Chained('jobsetChain') PathPart('') CaptureArgs(0) {
my ($self, $c) = @_;
$c->stash->{allBuilds} = $c->stash->{jobset}->builds;
$c->stash->{latestSucceeded} = $c->model('DB')->resultset('LatestSucceededForJobset')
->search({}, {bind => [$c->stash->{jobset}->name]});
->search({}, {bind => [$c->stash->{jobset}->id]});
$c->stash->{channelBaseName} =
$c->stash->{project}->name . "-" . $c->stash->{jobset}->name;
}
Expand Down
4 changes: 2 additions & 2 deletions src/lib/Hydra/Schema/Builds.pm
Expand Up @@ -622,8 +622,8 @@ QUERY

makeQueries('', "");
makeQueries('ForProject', "and project = ?");
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 = ?");


my %hint = (
Expand Down

0 comments on commit 16ecd4f

Please sign in to comment.