Merge pull request #4964 from dokku/josegonzalez-patch-1

Add log message when running state is false
This commit is contained in:
Jose Diaz-Gonzalez
2022-01-15 06:44:06 -05:00
committed by GitHub

View File

@@ -135,6 +135,8 @@ func Start(appName string) error {
if runningState == "mixed" {
common.LogWarn("App is running in mixed mode, releasing")
} else if runningState == "false" {
common.LogWarn("App has been detected as not running, releasing")
}
if runningState != "true" {