summaryrefslogtreecommitdiff
path: root/errors.go
diff options
context:
space:
mode:
authorValery Piashchynski <[email protected]>2020-10-27 15:50:57 +0300
committerGitHub <[email protected]>2020-10-27 15:50:57 +0300
commit105bde0e0c1a7c133d1daa10603ca5ce9a9ade4d (patch)
tree0d4664ef76ff6515fa965690a79dc69604eb3849 /errors.go
parent91cf918b30938129609323ded53e190385e019a6 (diff)
parent2176584129e493e08aed158bc050070d520ee183 (diff)
Merge pull request #376 from spiral/feature/lazy-load
Feature/lazy load
Diffstat (limited to 'errors.go')
-rwxr-xr-xerrors.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/errors.go b/errors.go
index 52356549..7c91a92b 100755
--- a/errors.go
+++ b/errors.go
@@ -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)
}