Use podman interactive mode when restoring db

interactive mode (-i) is required since the db restore makes use of
stdin redirect.

Change-Id: I9668df39ed874949badd2bd169de2eaae0c08a48
Signed-off-by: James Slagle <jslagle@redhat.com>
This commit is contained in:
James Slagle 2021-06-03 15:29:12 -04:00
parent 899f86285f
commit 6b5ebca318
1 changed files with 1 additions and 1 deletions

View File

@ -546,7 +546,7 @@ class HeatPodLauncher(HeatContainerLauncher):
try: try:
with open(db_dump_path) as f: with open(db_dump_path) as f:
subprocess.run([ subprocess.run([
'sudo', 'podman', 'exec', '-u', 'root', 'sudo', 'podman', 'exec', '-i', '-u', 'root',
'mysql', 'mysql', 'heat'], stdin=f, 'mysql', 'mysql', 'heat'], stdin=f,
check=True) check=True)
finally: finally: