Skip to content

Commit

Permalink
remove the DumpState command from the protobuf Request
Browse files Browse the repository at this point in the history
  • Loading branch information
Keksoj committed May 3, 2023
1 parent 9da0b92 commit cdc8629
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 4 deletions.
3 changes: 0 additions & 3 deletions command/src/command.proto
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,6 @@ message Request {
string save_state = 1;
// load a state file, given its path
string load_state = 2;
// dump the state in JSON
DumpState dump_state = 3;
// list the workers and their status
ListWorkers list_workers = 4;
// list the frontends, filtered by protocol and/or domain
Expand Down Expand Up @@ -95,7 +93,6 @@ message Request {
}
}

message DumpState {}
message ListWorkers {}
message ListListeners {}
message UpgradeMain {}
Expand Down
1 change: 0 additions & 1 deletion command/src/request.rs
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,6 @@ impl Request {
// These won't ever reach a worker anyway
RequestType::SaveState(_)
| RequestType::LoadState(_)
| RequestType::DumpState(_)
| RequestType::ListWorkers(_)
| RequestType::ListFrontends(_)
| RequestType::ListListeners(_)
Expand Down

0 comments on commit cdc8629

Please sign in to comment.