chore: Shorten job names to stay within Linux 15-char thread limit (#6669)

This commit is contained in:
Valentin Balaschenko
2026-03-26 14:10:51 +00:00
committed by Ed Hennis
parent 9deae7eef8
commit c7a2c3d25a

View File

@@ -66,10 +66,12 @@ OrderBookDB::setup(std::shared_ptr<ReadView const> const& ledger)
if (app_.config().standalone())
update(ledger);
else
{
app_.getJobQueue().addJob(
jtUPDATE_PF, "OrderBookUpd", [this, ledger]() {
update(ledger);
});
jtUPDATE_PF,
"OBUpd" + std::to_string(ledger->seq()),
[this, ledger]() { update(ledger); });
}
}
}