forked from lix-project/hydra
Merge pull request #733 from basvandijk/fix-build_finished-notifications
Separate the build IDs in the build_finished payload with tabs
This commit is contained in:
commit
d816503814
|
@ -468,9 +468,9 @@ void State::notifyBuildStarted(pqxx::work & txn, BuildID buildId)
|
||||||
void State::notifyBuildFinished(pqxx::work & txn, BuildID buildId,
|
void State::notifyBuildFinished(pqxx::work & txn, BuildID buildId,
|
||||||
const std::vector<BuildID> & dependentIds)
|
const std::vector<BuildID> & dependentIds)
|
||||||
{
|
{
|
||||||
auto payload = fmt("%d ", buildId);
|
auto payload = fmt("%d", buildId);
|
||||||
for (auto & d : dependentIds)
|
for (auto & d : dependentIds)
|
||||||
payload += fmt("%d ", d);
|
payload += fmt("\t%d", d);
|
||||||
// FIXME: apparently parameterized() doesn't support NOTIFY.
|
// FIXME: apparently parameterized() doesn't support NOTIFY.
|
||||||
txn.exec(fmt("notify build_finished, '%s'", payload));
|
txn.exec(fmt("notify build_finished, '%s'", payload));
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue