Fix LoadManager stop

This commit is contained in:
Vinnie Falco
2013-09-30 09:14:16 -07:00
parent db531d905c
commit 27e8a71f08

View File

@@ -170,7 +170,7 @@ public:
if (isThreadRunning ())
{
journal.debug << "Stopping";
stopThread (0);
stopThreadAsync ();
}
else
{
@@ -424,6 +424,8 @@ public:
boost::this_thread::sleep (when);
}
}
stopped ();
}
};