Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
Signed-off-by: Yury-Fridlyand <[email protected]>
  • Loading branch information
Yury-Fridlyand committed Jan 28, 2025
1 parent 16b680b commit 15633dd
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion go/api/base_client.go
Original file line number Diff line number Diff line change
Expand Up @@ -6923,7 +6923,10 @@ func (client *baseClient) XInfoStream(key string) (map[string]interface{}, error
// consumer := infoFull["groups"].([]any)[0].(map[string]any)["consumers"].([]any)[0]
//
// [valkey.io]: https://valkey.io/commands/xinfo-stream/
func (client *baseClient) XInfoStreamFullWithOptions(key string, opts *options.XInfoStreamOptions) (map[string]interface{}, error) {
func (client *baseClient) XInfoStreamFullWithOptions(
key string,
opts *options.XInfoStreamOptions,
) (map[string]interface{}, error) {
args := []string{key, options.FullKeyword}
if opts != nil {
optionArgs, err := opts.ToArgs()
Expand Down

0 comments on commit 15633dd

Please sign in to comment.