Handle loop_ NULL case (#9067)

Co-authored-by: Mehrdad <noreply@github.com>
This commit is contained in:
mehrdadn
2020-06-22 11:05:29 -07:00
committed by GitHub
co-authored by Mehrdad
parent b5fafe1fce
commit 1a40d24174
@@ -136,6 +136,8 @@ void PlasmaStoreRunner::Start() {
void PlasmaStoreRunner::Stop() {
if (loop_) {
loop_->Stop();
} else {
ARROW_LOG(ERROR) << "Expected loop_ to be non-NULL; this may be a bug";
}
}