Skip to content

Commit

Permalink
Improve config restart info, remove extraneous app.Start
Browse files Browse the repository at this point in the history
  • Loading branch information
rfay committed Oct 6, 2018
1 parent fbcd4ff commit bf4b294
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 4 deletions.
2 changes: 1 addition & 1 deletion pkg/ddevapp/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -402,7 +402,7 @@ func (app *DdevApp) CheckCustomConfig() {
}
}
if customConfig {
util.Warning("Custom configuration takes effect when container is created, \nusually on start, use 'ddev restart' if you're not seeing it take effect.")
util.Warning("Custom configuration takes effect when container is created, \nusually on start, use 'ddev restart' or 'ddev rm && ddev start' if you're not seeing it take effect.")
}

}
Expand Down
3 changes: 0 additions & 3 deletions pkg/ddevapp/config_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -534,8 +534,5 @@ func TestConfigOverrideDetection(t *testing.T) {
}
assert.Contains(out, "Custom configuration takes effect")

err = app.Start()
assert.NoError(err)

_ = app.Down(true, false)
}

0 comments on commit bf4b294

Please sign in to comment.