Skip to content

Commit

Permalink
fix: added unhealthy back to entrypoint
Browse files Browse the repository at this point in the history
  • Loading branch information
joesturge committed Sep 18, 2024
1 parent aebb177 commit b2ddaa8
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/entrypoint/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,9 @@ fn handle_log(group: &String, level: &Level, message: &String) {
docker::stop(group.clone());
info!(target: "lazymc-docker-proxy::entrypoint", "{} server container forcefully stopped", group.clone());
}
(Level::Error, _) => {
health::unhealthy();
}
_ => {}
}
}

0 comments on commit b2ddaa8

Please sign in to comment.