remove debug msg from jobqueue, adjust ledger stress parameters

This commit is contained in:
Richard Holland
2024-12-09 19:44:35 +11:00
parent 13178193d6
commit 0eb46d0d49
2 changed files with 1 additions and 2 deletions

View File

@@ -326,7 +326,6 @@ public:
};
int threads = f();
std::cout << "JobQueue thread count: " << threads << "\n";
return threads;
}(config_),
m_collectorManager->group("jobq"),

View File

@@ -21,7 +21,7 @@ class LedgerStress_test : public beast::unit_test::suite
{
private:
static constexpr std::size_t TXN_PER_LEDGER = 10000;
static constexpr std::size_t MAX_TXN_PER_ACCOUNT = 5; // Increased from 1
static constexpr std::size_t MAX_TXN_PER_ACCOUNT = 2; // Increased from 1
static constexpr std::chrono::seconds MAX_CLOSE_TIME{6};
static constexpr std::size_t REQUIRED_ACCOUNTS =
(TXN_PER_LEDGER + MAX_TXN_PER_ACCOUNT - 1) / MAX_TXN_PER_ACCOUNT;