diff options
Diffstat (limited to 'state.go')
-rw-r--r-- | state.go | 5 |
1 files changed, 0 insertions, 5 deletions
@@ -26,9 +26,6 @@ const ( // StateWorking - working on given payload. StateWorking - // StateStreaming - indicates that worker is streaming the data at the moment. - StateStreaming - // StateStopping - process is being softly stopped. StateStopping @@ -57,8 +54,6 @@ func (s *state) String() string { return "ready" case StateWorking: return "working" - case StateStreaming: - return "streaming" case StateStopped: return "stopped" case StateErrored: |