diff options
author | Justin Sievenpiper <justin@sievenpiper.co> | 2022-03-30 12:12:02 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-30 21:12:02 +0200 |
commit | a2c20a6cab8666c5d4dcdb04b6a64a77a55bfc71 (patch) | |
tree | 283a51c686d6ea8abb6a74c62fd9b573d59b2fd2 /go.mod | |
parent | 1d332342db6d5bd4e1552d8d46720bf1b948c26b (diff) | |
download | gitea-a2c20a6cab8666c5d4dcdb04b6a64a77a55bfc71.tar.gz gitea-a2c20a6cab8666c5d4dcdb04b6a64a77a55bfc71.zip |
Add Redis Sentinel Authentication Support (#19213)
Gitea was not able to supply any authentication parameters to it. So this brings support to do that, along with some light extraction of a couple of bits into some separate functions for easier testing.
I looked at other libraries supporting similar RedisUri-style connection strings (e.g. Lettuce), but it looks like this type of configuration is beyond what would typically be done in a connection string. Since gitea doesn't have configuration options for manually specifying all this redis connection detail, I went ahead and just chose straightforward names for these new parameters.
Diffstat (limited to 'go.mod')
-rw-r--r-- | go.mod | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -32,7 +32,7 @@ require ( github.com/go-git/go-billy/v5 v5.3.1 github.com/go-git/go-git/v5 v5.4.3-0.20210630082519-b4368b2a2ca4 github.com/go-ldap/ldap/v3 v3.4.2 - github.com/go-redis/redis/v8 v8.11.4 + github.com/go-redis/redis/v8 v8.11.5 github.com/go-sql-driver/mysql v1.6.0 github.com/go-swagger/go-swagger v0.29.0 github.com/go-testfixtures/testfixtures/v3 v3.6.1 |