Commit a8e55ef
StreamingCredentialProvider support (redis#3445)
* Added StreamingCredentialProvider interface
* StreamingCredentialProvider support
* Removed debug statement
* Changed an approach to handle multiple connection pools
* Added support for RedisCluster
* Added dispatching of custom connection pool
* Extended CredentialProvider interface with async API
* Changed method implementation
* Added support for async API
* Removed unused lock
* Added async API
* Added support for single connection client
* Added core functionality
* Revert debug call
* Added package to setup.py
* Added handling of in-use connections
* Added testing
* Changed fixture name
* Added marker
* Marked tests with correct annotations
* Added better cancelation handling
* Removed another annotation
* Added support for async cluster
* Added pipeline tests
* Added support for Pub/Sub
* Added support for Pub/Sub in cluster
* Added an option to parse endpoint from endpoints.json
* Updated package names and ENV variables
* Moved SSL certificates code into context of class
* Fixed fixtures for async
* Fixed test
* Added better endpoitns handling
* Changed variable names
* Added logging
* Fixed broken tests
* Added TODO for SSL tests
* Added error propagation to main thread
* Added single connection lock
* Codestyle fixes
* Added missing methods
* Removed wrong annotation
* Fixed tests
* Codestyle fix
* Updated EventListener instantiation inside of class
* Fixed variable name
* Fixed variable names
* Fixed variable name
* Added EventException
* Codestyle fix
* Removed redundant code
* Codestyle fix
* Updated test case
* Fixed tests
* Fixed test
* Removed dependency1 parent 8f2276e commit a8e55ef
File tree
28 files changed
+3117
-33
lines changed- .github/actions/run-tests
- redis
- asyncio
- auth
- tests
- test_asyncio
- test_auth
28 files changed
+3117
-33
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
103 | 103 | | |
104 | 104 | | |
105 | 105 | | |
106 | | - | |
| 106 | + | |
107 | 107 | | |
108 | 108 | | |
109 | 109 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
16 | 16 | | |
17 | 17 | | |
18 | 18 | | |
| 19 | + | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
10 | 10 | | |
11 | 11 | | |
12 | 12 | | |
| 13 | + | |
13 | 14 | | |
14 | 15 | | |
15 | 16 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
53 | 53 | | |
54 | 54 | | |
55 | 55 | | |
| 56 | + | |
| 57 | + | |
| 58 | + | |
| 59 | + | |
| 60 | + | |
| 61 | + | |
| 62 | + | |
56 | 63 | | |
57 | 64 | | |
58 | 65 | | |
| |||
233 | 240 | | |
234 | 241 | | |
235 | 242 | | |
| 243 | + | |
236 | 244 | | |
237 | 245 | | |
238 | 246 | | |
| |||
242 | 250 | | |
243 | 251 | | |
244 | 252 | | |
| 253 | + | |
| 254 | + | |
| 255 | + | |
| 256 | + | |
245 | 257 | | |
246 | 258 | | |
247 | 259 | | |
| |||
320 | 332 | | |
321 | 333 | | |
322 | 334 | | |
| 335 | + | |
| 336 | + | |
| 337 | + | |
| 338 | + | |
| 339 | + | |
323 | 340 | | |
324 | 341 | | |
325 | 342 | | |
| 343 | + | |
| 344 | + | |
| 345 | + | |
| 346 | + | |
| 347 | + | |
326 | 348 | | |
327 | 349 | | |
328 | 350 | | |
| |||
354 | 376 | | |
355 | 377 | | |
356 | 378 | | |
| 379 | + | |
| 380 | + | |
| 381 | + | |
| 382 | + | |
| 383 | + | |
| 384 | + | |
357 | 385 | | |
358 | 386 | | |
359 | 387 | | |
| |||
521 | 549 | | |
522 | 550 | | |
523 | 551 | | |
524 | | - | |
| 552 | + | |
| 553 | + | |
| 554 | + | |
525 | 555 | | |
526 | 556 | | |
527 | 557 | | |
| |||
759 | 789 | | |
760 | 790 | | |
761 | 791 | | |
| 792 | + | |
762 | 793 | | |
| 794 | + | |
| 795 | + | |
| 796 | + | |
| 797 | + | |
763 | 798 | | |
764 | 799 | | |
765 | 800 | | |
| |||
876 | 911 | | |
877 | 912 | | |
878 | 913 | | |
| 914 | + | |
| 915 | + | |
| 916 | + | |
| 917 | + | |
| 918 | + | |
| 919 | + | |
879 | 920 | | |
880 | 921 | | |
881 | 922 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
29 | 29 | | |
30 | 30 | | |
31 | 31 | | |
| 32 | + | |
32 | 33 | | |
33 | 34 | | |
34 | 35 | | |
| |||
45 | 46 | | |
46 | 47 | | |
47 | 48 | | |
| 49 | + | |
48 | 50 | | |
49 | 51 | | |
50 | 52 | | |
| |||
57 | 59 | | |
58 | 60 | | |
59 | 61 | | |
| 62 | + | |
60 | 63 | | |
61 | 64 | | |
62 | 65 | | |
| |||
270 | 273 | | |
271 | 274 | | |
272 | 275 | | |
| 276 | + | |
273 | 277 | | |
274 | 278 | | |
275 | 279 | | |
| |||
366 | 370 | | |
367 | 371 | | |
368 | 372 | | |
| 373 | + | |
| 374 | + | |
| 375 | + | |
| 376 | + | |
| 377 | + | |
369 | 378 | | |
370 | 379 | | |
371 | 380 | | |
372 | 381 | | |
373 | 382 | | |
| 383 | + | |
374 | 384 | | |
375 | 385 | | |
376 | 386 | | |
| |||
929 | 939 | | |
930 | 940 | | |
931 | 941 | | |
| 942 | + | |
| 943 | + | |
932 | 944 | | |
933 | 945 | | |
934 | 946 | | |
| |||
966 | 978 | | |
967 | 979 | | |
968 | 980 | | |
| 981 | + | |
| 982 | + | |
| 983 | + | |
969 | 984 | | |
970 | 985 | | |
971 | 986 | | |
| |||
1082 | 1097 | | |
1083 | 1098 | | |
1084 | 1099 | | |
| 1100 | + | |
| 1101 | + | |
| 1102 | + | |
| 1103 | + | |
| 1104 | + | |
| 1105 | + | |
| 1106 | + | |
| 1107 | + | |
| 1108 | + | |
| 1109 | + | |
| 1110 | + | |
| 1111 | + | |
| 1112 | + | |
| 1113 | + | |
| 1114 | + | |
| 1115 | + | |
| 1116 | + | |
| 1117 | + | |
| 1118 | + | |
| 1119 | + | |
| 1120 | + | |
| 1121 | + | |
| 1122 | + | |
| 1123 | + | |
| 1124 | + | |
| 1125 | + | |
| 1126 | + | |
1085 | 1127 | | |
1086 | 1128 | | |
1087 | 1129 | | |
1088 | 1130 | | |
| 1131 | + | |
1089 | 1132 | | |
1090 | 1133 | | |
1091 | 1134 | | |
| |||
1102 | 1145 | | |
1103 | 1146 | | |
1104 | 1147 | | |
| 1148 | + | |
1105 | 1149 | | |
1106 | 1150 | | |
1107 | 1151 | | |
| |||
1113 | 1157 | | |
1114 | 1158 | | |
1115 | 1159 | | |
| 1160 | + | |
| 1161 | + | |
| 1162 | + | |
| 1163 | + | |
1116 | 1164 | | |
1117 | 1165 | | |
1118 | 1166 | | |
| |||
1230 | 1278 | | |
1231 | 1279 | | |
1232 | 1280 | | |
| 1281 | + | |
| 1282 | + | |
| 1283 | + | |
| 1284 | + | |
| 1285 | + | |
| 1286 | + | |
1233 | 1287 | | |
1234 | 1288 | | |
1235 | 1289 | | |
| |||
0 commit comments