update status data
All checks were successful
Build and Publish / BuildAndDeployAmd64 (push) Successful in 27s
Build and Publish / BuildAndDeploy (push) Successful in 2m20s

This commit is contained in:
matst80
2024-11-13 23:39:28 +01:00
parent ababb55b17
commit 7795fc9c39
2 changed files with 20 additions and 10 deletions

View File

@@ -307,10 +307,6 @@ func (c *CartGrain) HandleMessage(message *Message, isReplay bool) (*FrameWithPa
c.mu.Unlock()
}
result, err := json.Marshal(c)
return &FrameWithPayload{
Frame: Frame{
StatusCode: 200,
},
Payload: result,
}, err
msg := MakeFrameWithPayload(RemoteHandleMutationReply, 200, result)
return &msg, err
}