Merge "init: do not handle control messages after shutdown"

This commit is contained in:
Treehugger Robot 2020-03-27 22:55:30 +00:00 committed by Gerrit Code Review
commit e10591fc62

View file

@ -901,7 +901,9 @@ int SecondStageMain(int argc, char** argv) {
(*function)();
}
}
HandleControlMessages();
if (!IsShuttingDown()) {
HandleControlMessages();
}
}
return 0;