Skip to content

Commit 5cb7fe9

Browse files
committed
rename to redisbloom
1 parent 72c45cb commit 5cb7fe9

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

client_test.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package redis_timeseries_go
1+
package redis_bloom_go
22

33
import (
44
"os"
@@ -11,12 +11,12 @@ import (
1111
)
1212

1313
func createClient() *Client {
14-
valueh, exists := os.LookupEnv("REDISTIMESERIES_TEST_HOST")
14+
valueh, exists := os.LookupEnv("REDISBLOOM_TEST_HOST")
1515
host := "localhost:6379"
1616
if exists && valueh != "" {
1717
host = valueh
1818
}
19-
valuep, exists := os.LookupEnv("REDISTIMESERIES_TEST_PASSWORD")
19+
valuep, exists := os.LookupEnv("REDISBLOOM_TEST_PASSWORD")
2020
password := "SUPERSECRET"
2121
var ptr *string = nil
2222
if exists {

pool.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package redis_timeseries_go
1+
package redis_bloom_go
22

33
import (
44
"math/rand"

0 commit comments

Comments
 (0)