We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a2a1230 commit cfa75e5Copy full SHA for cfa75e5
storm/server.go
@@ -102,17 +102,17 @@ type ServerStatus struct {
102
103
// ServerStop represents a stopped Storm Server response.
104
type ServerStop struct {
105
- Shutdown bool `json:"shutdown"`
+ Shutdown string `json:"shutdown"`
106
}
107
108
// ServerReboot represents a rebooteed Storm Server response.
109
type ServerReboot struct {
110
- Rebooted bool `json:"rebooted"`
+ Rebooted string `json:"rebooted"`
111
112
113
// ServerStart represents a started Storm Server response.
114
type ServerStart struct {
115
- Started bool `json:"started"`
+ Started string `json:"started"`
116
117
118
// ServerRunningStatus represents a detailed status step of a Storm Server.
0 commit comments