mirror of
https://github.com/monero-project/monero-gui
synced 2024-12-19 04:45:53 +01:00
Merge pull request #2927
1580c3a
DaemonManager: remove max-concurrency upper bound (selsta)
This commit is contained in:
commit
47559e51be
@ -114,8 +114,8 @@ bool DaemonManager::start(const QString &flags, NetworkType::Type nettype, const
|
|||||||
|
|
||||||
arguments << "--check-updates" << "disabled";
|
arguments << "--check-updates" << "disabled";
|
||||||
|
|
||||||
// --max-concurrency based on threads available. max: 6
|
// --max-concurrency based on threads available.
|
||||||
int32_t concurrency = qBound(1, QThread::idealThreadCount() / 2, 6);
|
int32_t concurrency = qMax(1, QThread::idealThreadCount() / 2);
|
||||||
|
|
||||||
if(!flags.contains("--max-concurrency", Qt::CaseSensitive)){
|
if(!flags.contains("--max-concurrency", Qt::CaseSensitive)){
|
||||||
arguments << "--max-concurrency" << QString::number(concurrency);
|
arguments << "--max-concurrency" << QString::number(concurrency);
|
||||||
|
Loading…
Reference in New Issue
Block a user