mirror of
https://github.com/XRPLF/rippled.git
synced 2026-03-31 17:12:39 +00:00
Compare commits
16 Commits
3.2.0-b2
...
vlntb/thre
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
70a05ec5fa | ||
|
|
10f7b5c291 | ||
|
|
5a3f61c99e | ||
|
|
5c8dfe5456 | ||
|
|
ab8c168e3b | ||
|
|
3a477e4d01 | ||
|
|
96bfc32fe2 | ||
|
|
de671863e2 | ||
|
|
e0cabb9f8c | ||
|
|
3d9c545f59 | ||
|
|
9b944ee8c2 | ||
|
|
509677abfd | ||
|
|
addc1e8e25 | ||
|
|
faf69da4b0 | ||
|
|
76e3b4fb0f | ||
|
|
e8bdbf975a |
@@ -95,11 +95,6 @@ setCurrentThreadNameImpl(std::string_view name)
|
||||
{
|
||||
std::cerr << "WARNING: Thread name \"" << name << "\" (length " << name.size()
|
||||
<< ") exceeds maximum of " << maxThreadNameLength << " characters on Linux.\n";
|
||||
|
||||
XRPL_ASSERT(
|
||||
false,
|
||||
"beast::detail::setCurrentThreadNameImpl : Thread name exceeds "
|
||||
"maximum length for Linux");
|
||||
}
|
||||
#endif
|
||||
}
|
||||
|
||||
@@ -23,7 +23,7 @@ namespace {
|
||||
// and follow the format described at http://semver.org/
|
||||
//------------------------------------------------------------------------------
|
||||
// clang-format off
|
||||
char const* const versionString = "3.2.0-b2"
|
||||
char const* const versionString = "3.2.0-b0"
|
||||
// clang-format on
|
||||
;
|
||||
|
||||
|
||||
@@ -56,8 +56,10 @@ OrderBookDBImpl::setup(std::shared_ptr<ReadView const> const& ledger)
|
||||
}
|
||||
else
|
||||
{
|
||||
// Shorten job name to fit Linux 15-char thread name limit with "j:" prefix
|
||||
// "OB" + seq (max 9 digits) = 11 chars, + "j:" = 13 chars (fits in 15)
|
||||
registry_.get().getJobQueue().addJob(
|
||||
jtUPDATE_PF, "OBUpd" + std::to_string(ledger->seq()), [this, ledger]() {
|
||||
jtUPDATE_PF, "OB" + std::to_string(ledger->seq() % 1000000000), [this, ledger]() {
|
||||
update(ledger);
|
||||
});
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user