[pve-devel] [PATCH common 1/2] CLIHandler: remove spurious abort()
Stoiko Ivanov
s.ivanov at proxmox.com
Tue Jul 30 14:42:11 CEST 2019
The abort currently cannot be reached, instead the error with the same
message (unknown command '$cmdstr') in handle_cmd is raised.
Signed-off-by: Stoiko Ivanov <s.ivanov at proxmox.com>
---
src/PVE/CLIHandler.pm | 1 -
1 file changed, 1 deletion(-)
diff --git a/src/PVE/CLIHandler.pm b/src/PVE/CLIHandler.pm
index 2f607cd..802ce87 100644
--- a/src/PVE/CLIHandler.pm
+++ b/src/PVE/CLIHandler.pm
@@ -190,7 +190,6 @@ sub generate_usage_str {
my $param_cb = $gen_param_mapping_func->($cli_handler_class);
my ($subcmd, $def, undef, undef, $cmdstr) = resolve_cmd($cmd);
- $abort->("unknown command '$cmdstr'") if !defined($def) && ref($cmd) eq 'ARRAY';
my $generate;
$generate = sub {
--
2.20.1
More information about the pve-devel
mailing list