From fa5d31056b00b3046a15e29b8aed6fcd34498702 Mon Sep 17 00:00:00 2001 From: Heikki Linnakangas Date: Fri, 16 Apr 2021 11:11:13 +0300 Subject: [PATCH] Remove unimplemented "snapshot" subcommand from --help --- vendor/postgres | 2 +- zenith/src/main.rs | 8 -------- 2 files changed, 1 insertion(+), 9 deletions(-) diff --git a/vendor/postgres b/vendor/postgres index 167196910d..d143241a16 160000 --- a/vendor/postgres +++ b/vendor/postgres @@ -1 +1 @@ -Subproject commit 167196910d6f41466c82793bcf14bfe442468776 +Subproject commit d143241a1653d3825d94d645801c62c7755b1015 diff --git a/zenith/src/main.rs b/zenith/src/main.rs index f6690dd8d7..5e34c655b9 100644 --- a/zenith/src/main.rs +++ b/zenith/src/main.rs @@ -30,14 +30,6 @@ fn main() { .subcommand(SubCommand::with_name("stop").arg(name_arg.clone())) .subcommand(SubCommand::with_name("destroy").arg(name_arg.clone())), ) - .subcommand( - SubCommand::with_name("snapshot") - .about("Manage database snapshots") - .subcommand(SubCommand::with_name("create")) - .subcommand(SubCommand::with_name("start")) - .subcommand(SubCommand::with_name("stop")) - .subcommand(SubCommand::with_name("destroy")), - ) .get_matches(); // handle init separately and exit