Skip to content

Commit

Permalink
start ambassador only if mapping configured (#1328)
Browse files Browse the repository at this point in the history
  • Loading branch information
ftardif authored and bsideup committed Mar 21, 2019
1 parent 2fc7c21 commit 31b3610
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -239,7 +239,9 @@ private List<Container> listChildContainers() {
}

private void startAmbassadorContainers() {
ambassadorContainer.start();
if (!ambassadorPortMappings.isEmpty()) {
ambassadorContainer.start();
}
}

private Logger logger() {
Expand Down

0 comments on commit 31b3610

Please sign in to comment.