Skip to content

Commit

Permalink
Update DobbyManager.cpp
Browse files Browse the repository at this point in the history
  • Loading branch information
ks734 authored Sep 3, 2024
1 parent 0d7b9a9 commit b7ba289
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion daemon/lib/source/DobbyManager.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -476,7 +476,10 @@ void DobbyManager::cleanupContainersShutdown()
while (it != mContainers.end())
{
if ((it->second->state == DobbyContainer::State::Running) || \
(it->second->state == DobbyContainer::State::Paused))
(it->second->state == DobbyContainer::State::Paused) || \
(it->second->state == DobbyContainer::State::Hibernating) || \
(it->second->state == DobbyContainer::State::Hibernated) || \
(it->second->state == DobbyContainer::State::Awakening))
{
AI_LOG_INFO("Stopping container %s", it->first.c_str());
// By calling the "proper" stop method here, any listening services will be
Expand Down

0 comments on commit b7ba289

Please sign in to comment.