diff options
author | Wolfy-J <[email protected]> | 2020-10-26 21:46:23 +0300 |
---|---|---|
committer | Wolfy-J <[email protected]> | 2020-10-26 21:46:23 +0300 |
commit | 2176584129e493e08aed158bc050070d520ee183 (patch) | |
tree | 0d4664ef76ff6515fa965690a79dc69604eb3849 /errors.go | |
parent | 9d2de5e46110c07eceb87dcfde3af9b6a6c4a76c (diff) |
- implement worker debug mode
Diffstat (limited to 'errors.go')
-rwxr-xr-x | errors.go | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -1,11 +1,11 @@ package roadrunner -// JobError is job level error (no WorkerProcess halt), wraps at top +// ExecError is job level error (no WorkerProcess halt), wraps at top // of error context -type JobError []byte +type ExecError []byte // Error converts error context to string -func (te JobError) Error() string { +func (te ExecError) Error() string { return string(te) } |