diff options
author | Wolfy-J <[email protected]> | 2019-05-02 18:51:27 +0300 |
---|---|---|
committer | Wolfy-J <[email protected]> | 2019-05-02 18:51:27 +0300 |
commit | bb95a9fbd6cc7e8a2d8204417e965dc8e1282128 (patch) | |
tree | 46288a4337701a1ee6c7b8734e31cf531cf558fa /state.go | |
parent | b3e7bbccdd7636b6ce7d90cf4f295e498feb719c (diff) |
base watcher implementation
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: |