Avoid fetching Projects/Jobsets just to get the name column
In particular, doing a 'select * from Jobsets where ...' must be avoided, because the 'errormsg' column can be very big.
This commit is contained in:
@@ -55,7 +55,7 @@ sub common {
|
||||
state => $state,
|
||||
target_url => "$baseurl/build/" . $b->id,
|
||||
description => "Hydra build #" . $b->id . " of $jobName",
|
||||
name => "Hydra " . $b->job->name,
|
||||
name => "Hydra " . $b->get_column('job'),
|
||||
});
|
||||
while (my $eval = $evals->next) {
|
||||
my $gitlabstatusInput = $eval->jobsetevalinputs->find({ name => "gitlab_status_repo" });
|
||||
|
Reference in New Issue
Block a user