Skip to content

Commit

Permalink
Merge pull request #1420 from NixOS/nix-2.23
Browse files Browse the repository at this point in the history
`sshPublicHostKey` fix for `master`
  • Loading branch information
Ericson2314 authored Oct 24, 2024
2 parents d3966d3 + 8515cb1 commit f974891
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/hydra-queue-runner/hydra-queue-runner.cc
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ void State::parseMachines(const std::string & contents)
std::move(mandatoryFeatures),
// `sshPublicHostKey`
tokens[7] != "" && tokens[7] != "-"
? base64Decode(tokens[7])
? tokens[7]
: "",
});

Expand Down

0 comments on commit f974891

Please sign in to comment.