Skip to content

Commit 2592434

Browse files
Update CHANGELOG
1 parent 9ae731d commit 2592434

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
* util: Add ParseUInt32 and ParseUInt64
1313
* [RPC] getmempoolancestors/getmempooldescendants
1414
* [RPC] setnetworkactive
15+
* httpserver: drop boost
1516
* Update CHANGELOG
1617

1718
**Dynamic v2.2.0.0**

src/httpserver.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -498,7 +498,7 @@ void StopHTTPServer()
498498
// master that appears to be solved, so in the future that solution
499499
// could be used again (if desirable).
500500
// (see discussion in https://github.com/bitcoin/bitcoin/pull/6990)
501-
+ if (threadResult.valid() && threadResult.wait_for(std::chrono::milliseconds(2000)) == std::future_status::timeout) {
501+
if (threadResult.valid() && threadResult.wait_for(std::chrono::milliseconds(2000)) == std::future_status::timeout) {
502502
LogPrintf("HTTP event loop did not exit within allotted time, sending loopbreak\n");
503503
event_base_loopbreak(eventBase);
504504
}

0 commit comments

Comments
 (0)