diff options
author | Valery Piashchynski <[email protected]> | 2020-10-27 15:58:46 +0300 |
---|---|---|
committer | Valery Piashchynski <[email protected]> | 2020-10-27 15:58:46 +0300 |
commit | c9af916ae4d78334d348ed1ef7238206f3ecb7a1 (patch) | |
tree | 43c04f7c538ecbd0b29fc280d41df5d00f203436 /errors.go | |
parent | fd60aff1cddf32b0c45d934fcf14b070df80adcf (diff) | |
parent | 105bde0e0c1a7c133d1daa10603ca5ce9a9ade4d (diff) |
Merge remote-tracking branch 'origin/release_2.0' into feature/pool_supervisor
# Conflicts:
# static_pool.go
# sync_worker.go
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) } |