diff --git a/README.md b/README.md index 8086fbf..ea468f1 100644 --- a/README.md +++ b/README.md @@ -39,7 +39,7 @@ Args: [] Redis commands and values ``` -* `URI` URI to connect To. It follow the format of [the provisional IANA spec for Redis URLs](https://www.iana.org/assignments/uri-schemes/prov/redis), but with the option to denote a TLS secured connection with the protocol rediss:. +* `URI` URI to connect to. It follows the format of [the provisional IANA spec for Redis URLs](https://www.iana.org/assignments/uri-schemes/prov/redis), but with the option to denote a TLS secured connection with the protocol rediss:. e.g. `INFO KEYSPACE` @@ -47,7 +47,7 @@ Be aware of interactions with wild cards and special characters in the shell; qu ## License -Redli is (c) IBM Corporation 2018. All rights reserved. +Redli is (c) IBM Corporation 2018-2024. All rights reserved. Redli is released under the Apache 2 License. diff --git a/redli.go b/redli.go index a139c28..e4920c1 100644 --- a/redli.go +++ b/redli.go @@ -230,15 +230,6 @@ func main() { sort.Strings(commandstrings) - reply, err := redis.String(conn.Do("INFO")) - if err != nil { - log.Fatal(err) - } - - info := redisParseInfo(reply) - - fmt.Printf("Connected to %s\n", info["redis_version"]) - liner := liner.NewLiner() defer liner.Close()