diff options
Diffstat (limited to 'pkg/worker/state.go')
-rwxr-xr-x | pkg/worker/state.go | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/pkg/worker/state.go b/pkg/worker/state.go index c5d70a21..176e151b 100755 --- a/pkg/worker/state.go +++ b/pkg/worker/state.go @@ -32,9 +32,6 @@ const ( // StateErrored - error StateImpl (can't be used). StateErrored - - // StateRemove - worker is killed and removed from the stack - StateRemove ) type StateImpl struct { @@ -70,8 +67,6 @@ func (s *StateImpl) String() string { return "errored" case StateDestroyed: return "destroyed" - case StateRemove: - return "remove" } return "undefined" |