Add state field to ResyncVolumeResponse
Open
- Dominant language
- Makefile
- Stars
- 12
- Forks
- 23
- PR merge metrics
- No merged PRs in 30d
Description
Add state file to the ResyncVolumeResponse to provide more clarity about the current state of the volume
```go
message ResyncVolumeResponse{
// Indicates that the volume is ready to use.
// The default value is false.
// This field is REQUIRED.
bool ready = 1;
// Represents the current state of the volume which is helpful to provide the state of the volume to the user.
// with this user can identify that the image is still resyncing, completed, stated to resync, or failed to resync.
string state =2;
}
```
Contributor guide
No contributing guide indexed for this repository
Assessment
This issue has not been assessed yet.