summaryrefslogtreecommitdiff
path: root/plugins/temporal/protocol/worker_info.go
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/temporal/protocol/worker_info.go')
-rw-r--r--plugins/temporal/protocol/worker_info.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/temporal/protocol/worker_info.go b/plugins/temporal/protocol/worker_info.go
index 6dfcd81f..58a0ae66 100644
--- a/plugins/temporal/protocol/worker_info.go
+++ b/plugins/temporal/protocol/worker_info.go
@@ -47,7 +47,7 @@ func FetchWorkerInfo(c Codec, e Endpoint, dc converter.DataConverter) ([]WorkerI
result, err := c.Execute(e, Context{}, Message{ID: 0, Command: GetWorkerInfo{}})
if err != nil {
- return nil, err
+ return nil, errors.E(op, err)
}
if len(result) != 1 {