Skip to content
This repository was archived by the owner on Jun 23, 2025. It is now read-only.
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions internal/cmd/cmd_get.go
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,9 @@
Value: value,
},
},
Metadata: &wire.Metadata{

Check failure on line 61 in internal/cmd/cmd_get.go

View workflow job for this annotation

GitHub Actions / lint

undefined: wire.Metadata

Check failure on line 61 in internal/cmd/cmd_get.go

View workflow job for this annotation

GitHub Actions / lint

unknown field Metadata in struct literal of type wire.Result
IsWatchable: true,
},
},
}
}
Expand Down
3 changes: 3 additions & 0 deletions internal/cmd/cmd_hget.go
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,9 @@
Value: value,
},
},
Metadata: &wire.Metadata{

Check failure on line 51 in internal/cmd/cmd_hget.go

View workflow job for this annotation

GitHub Actions / lint

undefined: wire.Metadata

Check failure on line 51 in internal/cmd/cmd_hget.go

View workflow job for this annotation

GitHub Actions / lint

unknown field Metadata in struct literal of type wire.Result
IsWatchable: true,
},
},
}
}
Expand Down
3 changes: 3 additions & 0 deletions internal/cmd/cmd_hgetall.go
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,9 @@
Elements: elements,
},
},
Metadata: &wire.Metadata{

Check failure on line 53 in internal/cmd/cmd_hgetall.go

View workflow job for this annotation

GitHub Actions / lint

undefined: wire.Metadata

Check failure on line 53 in internal/cmd/cmd_hgetall.go

View workflow job for this annotation

GitHub Actions / lint

unknown field Metadata in struct literal of type wire.Result
IsWatchable: true,
},
},
}
}
Expand Down
3 changes: 3 additions & 0 deletions internal/cmd/cmd_zcard.go
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,9 @@
Count: count,
},
},
Metadata: &wire.Metadata{

Check failure on line 51 in internal/cmd/cmd_zcard.go

View workflow job for this annotation

GitHub Actions / lint

undefined: wire.Metadata

Check failure on line 51 in internal/cmd/cmd_zcard.go

View workflow job for this annotation

GitHub Actions / lint

unknown field Metadata in struct literal of type wire.Result
IsWatchable: true,
},
},
}
}
Expand Down
3 changes: 3 additions & 0 deletions internal/cmd/cmd_zcount.go
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,9 @@
Count: count,
},
},
Metadata: &wire.Metadata{

Check failure on line 67 in internal/cmd/cmd_zcount.go

View workflow job for this annotation

GitHub Actions / lint

undefined: wire.Metadata

Check failure on line 67 in internal/cmd/cmd_zcount.go

View workflow job for this annotation

GitHub Actions / lint

unknown field Metadata in struct literal of type wire.Result
IsWatchable: true,
},
},
}
}
Expand Down
3 changes: 3 additions & 0 deletions internal/cmd/cmd_zrange.go
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,9 @@ func newZRANGERes(elements []*wire.ZElement) *CmdRes {
Response: &wire.Result_ZRANGERes{
ZRANGERes: &wire.ZRANGERes{Elements: elements},
},
Metadata: &wire.Metadata{
IsWatchable: true,
},
},
}
}
Expand Down
3 changes: 3 additions & 0 deletions internal/cmd/cmd_zrank.go
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,9 @@ func newZRANKRes(element *wire.ZElement) *CmdRes {
Element: element,
},
},
Metadata: &wire.Metadata{
IsWatchable: true,
},
},
}
}
Expand Down