Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/hydra
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 856408918691
Choose a base ref
...
head repository: NixOS/hydra
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 2d092a6fbc59
Choose a head ref
  • 3 commits
  • 1 file changed
  • 2 contributors

Commits on Jan 12, 2020

  1. Copy the full SHA
    de24771 View commit details

Commits on Jan 20, 2020

  1. Copy the full SHA
    cdd9d6e View commit details

Commits on Apr 1, 2020

  1. Merge pull request #702 from kquick/fix_api_push

    Handle case where jobset has no defined errormsg for api/jobsets
    edolstra authored Apr 1, 2020
    Copy the full SHA
    2d092a6 View commit details
Showing with 1 addition and 1 deletion.
  1. +1 −1 src/lib/Hydra/Controller/API.pm
2 changes: 1 addition & 1 deletion src/lib/Hydra/Controller/API.pm
Original file line number Diff line number Diff line change
@@ -88,7 +88,7 @@ sub jobsetToHash {
triggertime => $jobset->triggertime,
fetcherrormsg => $jobset->fetcherrormsg,
errortime => $jobset->errortime,
haserrormsg => $jobset->errormsg eq "" ? JSON::false : JSON::true
haserrormsg => defined($jobset->errormsg) && $jobset->errormsg ne "" ? JSON::true : JSON::false
};
}