-
Notifications
You must be signed in to change notification settings - Fork 3.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
redis connection problem #8666
Comments
@DingDongDeng Pinpoint log file path: |
+1 |
I can see with log:
Thank you for your hard work. |
++ 1
I changed the settings below so that it can work. pinpoint.config modify
to-be
|
I using pinpoint 2.5.0 and I'm experiencing same issue. I guess since I think If the result is of StatefulRedisConnectionImpl type, adding code to cast to StatefulRedisConnectionImpl will solve the problem. if (result instanceof CompletableFuture) {
// add to cast StatefulRedisConnectionImpl
if (result instanceof StatefulRedisConnectionImpl) {
StatefulRedisConnectionImpl statefulRedisConnection = (StatefulRedisConnectionImpl) ((CompletableFuture) result).get();
((EndPointAccessor) statefulRedisConnection)._$PINPOINT$_setEndPoint(endPoint);
return;
}
StatefulRedisClusterConnectionImpl statefulRedisClusterConnection = (StatefulRedisClusterConnectionImpl) ((CompletableFuture) result).get();
((EndPointAccessor) statefulRedisClusterConnection)._$PINPOINT$_setEndPoint(endPoint);
return;
} |
@YunSeoWon |
Hello
I have a redis connection problem while using pinpoint(2.3.2), so I'm asking you this question.
Is there anything I need to check?
This error occurs frequently. (not always)
The text was updated successfully, but these errors were encountered: