diff options
author | Wolfy-J <[email protected]> | 2018-06-11 12:13:36 +0300 |
---|---|---|
committer | Wolfy-J <[email protected]> | 2018-06-11 12:13:36 +0300 |
commit | efcddcc8d1b676c64cbd41a5f645bd046ba416d7 (patch) | |
tree | 8e51cde97920e62fcb03ad955933194d4af1b809 /service/http/rpc.go | |
parent | 4e54066384b1f2cfb6684c781976d3a9288f1f7e (diff) |
no more updated
Diffstat (limited to 'service/http/rpc.go')
-rw-r--r-- | service/http/rpc.go | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/service/http/rpc.go b/service/http/rpc.go index 2adb8706..aa68a826 100644 --- a/service/http/rpc.go +++ b/service/http/rpc.go @@ -25,9 +25,6 @@ type Worker struct { // Created is unix nano timestamp of worker creation time. Created int64 `json:"created"` - - // Updated is unix nano timestamp of last worker execution. - Updated int64 `json:"updated"` } // Reset resets underlying RR worker pool and restarts all of it's workers. @@ -53,7 +50,6 @@ func (rpc *rpcServer) Workers(list bool, r *WorkerList) error { Status: state.String(), NumJobs: state.NumExecs(), Created: w.Created.UnixNano(), - Updated: state.Updated().UnixNano(), }) } |