forked from hans/Nominatim
make sure psql always finishes
If an execption is raised by other means, we still have to close the stdin pipe to psql to make sure that it exits and releases its connection to the database.
This commit is contained in:
@@ -35,6 +35,7 @@ def execute_file(dsn, fname, ignore_errors=False, pre_code=None, post_code=None)
|
|||||||
cmd.append('--quiet')
|
cmd.append('--quiet')
|
||||||
proc = subprocess.Popen(cmd, env=get_pg_env(dsn), stdin=subprocess.PIPE)
|
proc = subprocess.Popen(cmd, env=get_pg_env(dsn), stdin=subprocess.PIPE)
|
||||||
|
|
||||||
|
try:
|
||||||
if not LOG.isEnabledFor(logging.INFO):
|
if not LOG.isEnabledFor(logging.INFO):
|
||||||
proc.stdin.write('set client_min_messages to WARNING;'.encode('utf-8'))
|
proc.stdin.write('set client_min_messages to WARNING;'.encode('utf-8'))
|
||||||
|
|
||||||
@@ -50,9 +51,9 @@ def execute_file(dsn, fname, ignore_errors=False, pre_code=None, post_code=None)
|
|||||||
|
|
||||||
if remain == 0 and post_code:
|
if remain == 0 and post_code:
|
||||||
proc.stdin.write((';' + post_code).encode('utf-8'))
|
proc.stdin.write((';' + post_code).encode('utf-8'))
|
||||||
|
finally:
|
||||||
proc.stdin.close()
|
proc.stdin.close()
|
||||||
|
|
||||||
ret = proc.wait()
|
ret = proc.wait()
|
||||||
|
|
||||||
if ret != 0 or remain > 0:
|
if ret != 0 or remain > 0:
|
||||||
raise UsageError("Failed to execute SQL file.")
|
raise UsageError("Failed to execute SQL file.")
|
||||||
|
|||||||
Reference in New Issue
Block a user