Skip to content

Commit

Permalink
fix lint error
Browse files Browse the repository at this point in the history
  • Loading branch information
mstoykov committed Jun 6, 2024
1 parent ebbd67c commit 0a7abd0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion redis/stub_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ func (rs *StubServer) Start(secure bool, clientCert []byte) error {

// The redis-cli will always start a session by sending the
// COMMAND message.
rs.RegisterCommandHandler("COMMAND", func(c *Connection, args []string) {
rs.RegisterCommandHandler("COMMAND", func(c *Connection, _ []string) {
c.WriteArray("OK")
})

Expand Down

0 comments on commit 0a7abd0

Please sign in to comment.