-
Notifications
You must be signed in to change notification settings - Fork 41
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[storage][front-end] Remove xxxDeleteResponse messages #181
Conversation
Following Google AIP-135 - Standard methods: Delete Related to opiproject#174 Signed-off-by: Boris Glimcher <[email protected]>
Signed-off-by: Boris Glimcher <[email protected]>
see opiproject/opi-api#181 Signed-off-by: Boris Glimcher <[email protected]>
see opiproject/opi-api#181 Signed-off-by: Boris Glimcher <[email protected]>
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Changes look good to me.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
thanks @glimchb - this change looks good to me and aligned with standardized APIs.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
👍 this is great progress.
|
||
// Front End (host-facing) APIs. | ||
|
||
// NVMe/PCIe emulation | ||
|
||
service NVMeSubsystemService { | ||
rpc NVMeSubsystemCreate (NVMeSubsystemCreateRequest) returns (NVMeSubsystem) {} | ||
rpc NVMeSubsystemDelete (NVMeSubsystemDeleteRequest) returns (NVMeSubsystemDeleteResponse) {} | ||
rpc NVMeSubsystemDelete (NVMeSubsystemDeleteRequest) returns (google.protobuf.Empty) {} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
👍 better to return empty
than an empty message
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
looks good. thanks
see opiproject/opi-api#181 Signed-off-by: Boris Glimcher <[email protected]>
see opiproject/opi-api#181 Signed-off-by: Boris Glimcher <[email protected]>
Following Google AIP-135 - Standard methods: Delete
Related to #174