update
Build and Publish / BuildAndDeployAmd64 (push) Successful in 37s
Build and Publish / BuildAndDeployArm64 (push) Successful in 4m29s

This commit is contained in:
2025-12-02 09:26:30 +01:00
parent d8791788fc
commit ebd1508294
3 changed files with 13 additions and 1 deletions
+1 -1
View File
@@ -131,7 +131,7 @@ func (h *RemoteHost[V]) Ping() bool {
return true
}
func (h *RemoteHost[V]) Get(ctx context.Context, id uint64, grain *V) error {
func (h *RemoteHost[V]) Get(ctx context.Context, id uint64, grain any) error {
ctx, cancel := context.WithTimeout(ctx, 5*time.Second)
defer cancel()
reply, error := h.controlClient.Get(ctx, &messages.GetRequest{Id: id})