Skip to content

Commit

Permalink
osdpctl: Add missing match arm for OsdpCommand::Status
Browse files Browse the repository at this point in the history
Signed-off-by: Siddharth Chandrasekaran <[email protected]>
  • Loading branch information
sidcha committed Dec 2, 2023
1 parent 85e6e77 commit 094a4ba
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions osdpctl/src/pd.rs
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,9 @@ impl PdDaemon {
OsdpCommand::FileTx(c) => {
log::info!("Command: {:?}", c);
}
OsdpCommand::Status(c) => {
log::info!("Command: {:?}", c);
},
}
0
});
Expand Down

0 comments on commit 094a4ba

Please sign in to comment.