-
Notifications
You must be signed in to change notification settings - Fork 78
Closed
Labels
β’οΈ BugSomething isn't workingSomething isn't working
Description
Bug Description
When trying to connect to a rediss (redis secure) it fails.
I'm supposing that is a problem with the storage/redis, since go-redis is handling it here and returning options with tls, but storage/redis is not handling it as we can see it here, it's not setting the TLS config.
How to Reproduce
Steps to reproduce the behavior:
- Create a new redis storage
- Pass the URL as rediss (redis secure) protocol
- Try to use the store
Expected Behavior
Connection established with TLS.
Storage package Version
v2.0.3
Code Snippet (optional)
package main
import "fmt"
func main() {
store = redis.New(redis.Config{
URL: "rediss://<user>:<pass>@127.0.0.1:6379/<db>",
})
fmt.Println(store.Get(key))
}
Checklist:
- I agree to follow Fiber's Code of Conduct.
- I have checked for existing issues that describe my problem prior to opening this one.
- I understand that improperly formatted bug reports may be closed without explanation.
Metadata
Metadata
Assignees
Labels
β’οΈ BugSomething isn't workingSomething isn't working