diff options
author | Valery Piashchynski <[email protected]> | 2020-11-09 14:21:21 +0300 |
---|---|---|
committer | Valery Piashchynski <[email protected]> | 2020-11-09 14:21:21 +0300 |
commit | e3a1669c8168320318291325f70ca35e2ab2eec3 (patch) | |
tree | f14875ecb4a86805226812108efcab72898b6125 /sync_worker.go | |
parent | 9fbe7726dd55cfedda724b7644e1b6bf7c1a6cb4 (diff) |
New tests, remove errors.go
Diffstat (limited to 'sync_worker.go')
-rwxr-xr-x | sync_worker.go | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/sync_worker.go b/sync_worker.go index 282254e5..56953fe6 100755 --- a/sync_worker.go +++ b/sync_worker.go @@ -50,7 +50,8 @@ func (tw *syncWorker) Exec(p Payload) (Payload, error) { rsp, err := tw.execPayload(p) if err != nil { - if _, ok := err.(ExecError); !ok { + // just to be more verbose + if errors.Is(errors.Exec, err) == false { tw.w.State().Set(StateErrored) tw.w.State().RegisterExec() } @@ -95,7 +96,8 @@ func (tw *syncWorker) ExecWithContext(ctx context.Context, p Payload) (Payload, rsp, err := tw.execPayload(p) if err != nil { - if _, ok := err.(ExecError); !ok { + // just to be more verbose + if errors.Is(errors.Exec, err) == false { tw.w.State().Set(StateErrored) tw.w.State().RegisterExec() } @@ -154,7 +156,7 @@ func (tw *syncWorker) execPayload(p Payload) (Payload, error) { } if pr.HasFlag(goridge.PayloadError) { - return EmptyPayload, ExecError(rsp.Context) + return EmptyPayload, errors.E(op, errors.Exec, errors.Str(string(rsp.Context))) //ExecError(rsp.Context) } // add streaming support :) |