Skip to content

Commit

Permalink
fix(io-engine/client): jsonrpc does not use subcommand
Browse files Browse the repository at this point in the history
Signed-off-by: Tiago Castro <[email protected]>
  • Loading branch information
tiagolobocastro committed Nov 23, 2023
1 parent 42c6bc8 commit 755cfb4
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
1 change: 0 additions & 1 deletion io-engine/src/bin/io-engine-client/v0/jsonrpc_cli.rs
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ use tracing::debug;

pub fn subcommands() -> Command {
Command::new("jsonrpc")
.subcommand_required(true)
.arg_required_else_help(true)
.about("Call a json-rpc method with a raw JSON payload")
.arg(
Expand Down
1 change: 0 additions & 1 deletion io-engine/src/bin/io-engine-client/v1/jsonrpc_cli.rs
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@ pub fn subcommands() -> Command {
.index(2)
.help("Parameters (JSON string) to pass to method call"),
)
.subcommand_required(true)
.arg_required_else_help(true)
}

Expand Down

0 comments on commit 755cfb4

Please sign in to comment.