Skip to content
Snippets Groups Projects
Commit ec359d50 authored by Adrien Béraud's avatar Adrien Béraud
Browse files

proxy tester: increase shutdown timeout

parent 3c5aeccd
No related branches found
No related tags found
No related merge requests found
...@@ -71,7 +71,7 @@ DhtProxyTester::tearDown() { ...@@ -71,7 +71,7 @@ DhtProxyTester::tearDown() {
cv.notify_all(); cv.notify_all();
}); });
std::unique_lock<std::mutex> lk(cv_m); std::unique_lock<std::mutex> lk(cv_m);
CPPUNIT_ASSERT(cv.wait_for(lk, 5s, [&]{ return done; })); CPPUNIT_ASSERT(cv.wait_for(lk, 15s, [&]{ return done; }));
serverProxy.reset(); serverProxy.reset();
nodeProxy.reset(); nodeProxy.reset();
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment