1 2 3 4 5 6 7 8 9 10
package roadrunner // JobError is job level error (no worker halt), wraps at top // of error context type JobError []byte // Error converts error context to string func (je JobError) Error() string { return string(je) }