mirror of
https://github.com/XRPLF/rippled.git
synced 2026-07-26 16:40:20 +00:00
chore: Shorten job names to stay within Linux 15-char thread limit (#6669)
This commit is contained in:
committed by
Ed Hennis
parent
9deae7eef8
commit
c7a2c3d25a
@@ -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); });
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user