Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
6689d65
tba draft
atakavci Nov 6, 2024
a18e632
- stop authxmanager on pool close
atakavci Nov 7, 2024
392b3b0
drop use of authxmanager and authenticatedconnection from core
atakavci Nov 12, 2024
f037440
-update submodule ref
atakavci Nov 17, 2024
eb63520
- remove submodule
atakavci Nov 18, 2024
cbb7781
Merge branch 'master' into ali/authx2
atakavci Nov 18, 2024
523fe42
back to current version
atakavci Nov 19, 2024
4e71535
- move autxhmanager creation to user space
atakavci Dec 5, 2024
08750e5
- prevent use of pubsub with TBA+RESP2 combination
atakavci Dec 5, 2024
b1ab1db
- support tba with clusters
atakavci Dec 6, 2024
1ec5239
- remove onerror from authxmanager
atakavci Dec 6, 2024
7d3a0ae
- fix flaky test
atakavci Dec 9, 2024
2176505
fix renewalDuringOperationsTest
atakavci Dec 9, 2024
9ea510d
-reviews from @sazzad16
atakavci Dec 10, 2024
e077031
Merge branch 'master' into ali/authx2
atakavci Dec 10, 2024
2175c15
- fix config for managedIdentity
atakavci Dec 11, 2024
86cf6f6
review from @ggivo
atakavci Dec 12, 2024
9717c9a
handle and propogate from unsuccessful AUTH response
atakavci Dec 12, 2024
9185f44
adding reauth support for both pubsub and shardedpubsub
atakavci Dec 14, 2024
5f8159d
fix ping issue with pubsub
atakavci Dec 15, 2024
9da80c4
Merge branch 'master' into ali/authx2
atakavci Dec 17, 2024
edf631a
- review from @sazzad16 : make JedisSafeAuthenticator protected
atakavci Dec 20, 2024
88a20c2
update authx version
atakavci Dec 20, 2024
93f53a2
- remove workaround for standalone endpoint
atakavci Dec 20, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
- remove workaround for standalone endpoint
  • Loading branch information
atakavci committed Dec 20, 2024
commit 93f53a2fdafd38924310dd9f15a141b88c4c00f4
Original file line number Diff line number Diff line change
Expand Up @@ -54,12 +54,8 @@ public static void before() {
try {
endpointConfig = HostAndPorts.getRedisEndpoint("standalone0");
} catch (IllegalArgumentException e) {
try {
endpointConfig = HostAndPorts.getRedisEndpoint("standalone");
} catch (IllegalArgumentException ex) {
log.warn("Skipping test because no Redis endpoint is configured");
org.junit.Assume.assumeTrue(false);
}
log.warn("Skipping test because no Redis endpoint is configured");
org.junit.Assume.assumeTrue(false);
}
}

Expand Down
Loading