Merge "Use 127.0.0.1 for ephemeral Heat server instead of ctlplane ip" into stable/wallaby

This commit is contained in:
Zuul 2022-01-13 22:18:34 +00:00 committed by Gerrit Code Review
commit 9e3ea87824
1 changed files with 1 additions and 1 deletions

View File

@ -455,7 +455,7 @@ class HeatPodLauncher(HeatContainerLauncher):
super(HeatPodLauncher, self).__init__(*args, **kwargs)
if not os.path.isdir(self.log_dir):
os.makedirs(self.log_dir)
self.host = self._get_ctlplane_ip()
self.host = "127.0.0.1"
self._chcon()
def _chcon(self):