Fix more Windows issues (#9011)

Co-authored-by: Mehrdad <noreply@github.com>
This commit is contained in:
mehrdadn
2020-06-19 18:51:45 -07:00
committed by GitHub
co-authored by Mehrdad
parent f8d49d69c1
commit 981f67bfb0
11 changed files with 61 additions and 59 deletions
@@ -133,7 +133,11 @@ void PlasmaStoreRunner::Start() {
ArrowLog::ShutDownArrowLog();
}
void PlasmaStoreRunner::Stop() { loop_->Stop(); }
void PlasmaStoreRunner::Stop() {
if (loop_) {
loop_->Stop();
}
}
void PlasmaStoreRunner::Shutdown() {
loop_->Shutdown();