Added ability to use username and password in Redis url (#572)

* Added ability to use username and password in the url used to access redis. Upgraded redis client from 5 to 7.

* Commented out the test that tried to write to the redis instance and thus caused automated test to fail

* Added code to skip test_Store test during automated CI run

Co-authored-by: Juan Peredo <jperedo@bolbeck.com>
This commit is contained in:
camba1
2020-07-06 07:59:32 -05:00
committed by Vasiliy Tolstov
parent f7b907b40b
commit 161c60fcf4
4 changed files with 150 additions and 12 deletions

3
go.mod
View File

@@ -3,6 +3,7 @@ module github.com/micro/go-plugins/store/redis/v2
go 1.13
require (
github.com/go-redis/redis/v7 v7.4.0
github.com/micro/go-micro/v2 v2.8.0
gopkg.in/redis.v5 v5.2.9
gopkg.in/yaml.v2 v2.2.7 // indirect
)