dont return memory address of errored call
All checks were successful
Build and Publish / BuildAndDeployAmd64 (push) Successful in 29s
Build and Publish / BuildAndDeploy (push) Successful in 2m52s

This commit is contained in:
matst80
2024-11-21 17:18:28 +01:00
parent 95efa0c4d8
commit 2575634d72

View File

@@ -48,7 +48,9 @@ func (h *GrainHandler) RemoteHandleMessageHandler(data *FrameWithPayload, result
} }
replyData, err := h.pool.Process(cartData.Id, msg) replyData, err := h.pool.Process(cartData.Id, msg)
if err != nil {
return err
}
resultChan <- *replyData resultChan <- *replyData
return err return err
} }