Separate payload elements using \t
[?]
Aug 12, 2019, 1:26 PM
WYELTQMO4R7HSHB5DQV7AIH55NSVPQAJRILFXRTID5ZGU4VEHQQACDependencies
- [2]
32KJOERMTurn hydra-notify into a daemon - [3]
IE2PRAQUhydra-queue-runner: Send build notifications - [4]
FITVNQ2SKeep track of the time we spend copying to/from build machines - [5]
EPWEMRI2Allow determinism checking for entire jobsets - [6]
24BMQDZAStart of single-process hydra-queue-runner
Change contents
- replacement in src/hydra-queue-runner/hydra-queue-runner.cc at line 302
assert(result.logFile.find('\'') == std::string::npos);txn.exec(fmt("notify step_finished, '%d %d %s'", buildId, stepNr,result.logFile.empty() ? "-" : result.logFile));assert(result.logFile.find('\t') == std::string::npos);txn.exec(fmt("notify step_finished, '%d\t%d\t%s'",buildId, stepNr, result.logFile)); - replacement in src/script/hydra-notify at line 105
my @payload = split / /, $payload;my @payload = split /\t/, $payload;