forgot to make it a call
This commit is contained in:
parent
0458a4f4e8
commit
431ab93d7b
1 changed files with 1 additions and 1 deletions
|
@ -46,7 +46,7 @@ fn main() -> eyre::Result<()> {
|
||||||
let mut child = Command::new("/bin/sh").arg("-c").arg(sh_args).spawn()?;
|
let mut child = Command::new("/bin/sh").arg("-c").arg(sh_args).spawn()?;
|
||||||
let exit = child.wait()?;
|
let exit = child.wait()?;
|
||||||
|
|
||||||
client.execute("select pg_backup_stop", &[])?;
|
client.execute("select pg_backup_stop()", &[])?;
|
||||||
drop(client);
|
drop(client);
|
||||||
|
|
||||||
exit.exit_ok()?;
|
exit.exit_ok()?;
|
||||||
|
|
Loading…
Reference in a new issue