Skip to content

Commit

Permalink
Remove redis interceptor.
Browse files Browse the repository at this point in the history
  • Loading branch information
cmeiklejohn committed Jul 4, 2023
1 parent 249f853 commit 8ef3b40
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -206,8 +206,8 @@ private static StatefulRedisConnection<String, String> getRedisConnection() {
RedisClientService redisClient = RedisClientService.getInstance();

if (getInstrumentationServerCommunicationEnabledProperty()) {
return new RedisInterceptorFactory<>(redisClient.redisClient.connect(), redisClient.connectionString)
.getProxy(StatefulRedisConnection.class);
// incomplete, needs instrumentation.
return RedisClientService.getInstance().redisClient.connect();
} else {
return RedisClientService.getInstance().redisClient.connect();
}
Expand Down

0 comments on commit 8ef3b40

Please sign in to comment.