Skip to content

Commit

Permalink
Merge pull request #16 from redis-performance/fix.redis.uri
Browse files Browse the repository at this point in the history
Fixed redis.uri property on query
  • Loading branch information
filipecosta90 authored May 17, 2023
2 parents 4e11716 + d1c0087 commit 6533254
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/query.go
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ var queryCmd = &cobra.Command{
pflags := cmd.Flags()
db, _ := pflags.GetString("db")
input, _ := pflags.GetString("input")
uri, _ := pflags.GetString("uri")
uri, _ := pflags.GetString(redis.REDIS_URI_PROPERTY)
concurrency, _ := pflags.GetInt("concurrency")
testTime, _ := pflags.GetInt("test.time")
requests, _ := pflags.GetInt("requests")
Expand Down

0 comments on commit 6533254

Please sign in to comment.