diff options
| author | MarcoFalke <[email protected]> | 2020-04-15 17:39:32 -0400 |
|---|---|---|
| committer | MarcoFalke <[email protected]> | 2020-04-15 17:41:56 -0400 |
| commit | 544709763e1f45148d1926831e07ff03487673ee (patch) | |
| tree | fab6ea4898f8670ab6e7cf415976ae5f67f13514 /src/interfaces/node.cpp | |
| parent | Merge #18645: [doc] Update thread information in developer docs (diff) | |
| parent | fuzz: Disable debug log file (diff) | |
| download | discoin-544709763e1f45148d1926831e07ff03487673ee.tar.xz discoin-544709763e1f45148d1926831e07ff03487673ee.zip | |
Merge #18571: fuzz: Disable debug log file
fa69f88486e900aacf3fc768671f947927173226 fuzz: Disable debug log file (MarcoFalke)
fa0cbd48c418ec14e1d91bffea206bce20bd1e56 test: Add optional extra_args to testing setup (MarcoFalke)
fad4fa7e2fb95b7ced9007060ebfd0e8f181f5d8 node: Add args alias for gArgs global (MarcoFalke)
Pull request description:
There are several issues with writing to a debug log file when fuzzing:
* Disk access is slow, but fuzzing should be fast (Note: I could not verify this claim with data)
* Disks have a limited size and will eventually run out of space, but fuzzing should run continuous
Fix both issues by disabling the debug log file for fuzz tests
ACKs for top commit:
practicalswift:
ACK fa69f88486e900aacf3fc768671f947927173226 -- patch looks correct
Tree-SHA512: f61beb6c94a9ab664deb191685fcad601e228b77bb1c43db6ec40616ae393c9dd35c51474f1b0759ac0bc29b5ca8456a329906a3695bd0f18fa4372210c8b54a
Diffstat (limited to 'src/interfaces/node.cpp')
| -rw-r--r-- | src/interfaces/node.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/interfaces/node.cpp b/src/interfaces/node.cpp index 6e5fdc61b..5ebbd6158 100644 --- a/src/interfaces/node.cpp +++ b/src/interfaces/node.cpp @@ -97,7 +97,7 @@ public: StopMapPort(); } } - void setupServerArgs() override { return SetupServerArgs(); } + void setupServerArgs() override { return SetupServerArgs(m_context); } bool getProxy(Network net, proxyType& proxy_info) override { return GetProxy(net, proxy_info); } size_t getNodeCount(CConnman::NumConnections flags) override { |