diff options
author | Gregory Maxwell <greg@xiph.org> | 2015-11-13 11:29:33 -0800 |
---|---|---|
committer | Gregory Maxwell <greg@xiph.org> | 2015-11-13 11:30:00 -0800 |
commit | dbd2c135ddb96bdc3a4e870c2371cb1fac227135 (patch) | |
tree | d37ef356cf90aaa62b4a107c9f9065c62728ee9e /src/init.cpp | |
parent | d3565604e3d94c074ee3f79b61dee9610b870a4c (diff) | |
parent | a264c32e3321ae909ca59cb8ce8bf5d812dbc4e1 (diff) |
Merge pull request #6990
a264c32 http: speed up shutdown (Wladimir J. van der Laan)
Diffstat (limited to 'src/init.cpp')
-rw-r--r-- | src/init.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/init.cpp b/src/init.cpp index a83a136fa5..f2001236a2 100644 --- a/src/init.cpp +++ b/src/init.cpp @@ -668,7 +668,7 @@ bool AppInitServers(boost::thread_group& threadGroup) return false; if (GetBoolArg("-rest", false) && !StartREST()) return false; - if (!StartHTTPServer(threadGroup)) + if (!StartHTTPServer()) return false; return true; } |