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>
(cherry picked from commit 6b5ebca318)
This commit is contained in:
James Slagle 2021-06-03 15:29:12 -04:00
parent 48e5e285e8
commit ee1ce3224b
1 changed files with 1 additions and 1 deletions

View File

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