-
Notifications
You must be signed in to change notification settings - Fork 1
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
Several cache fixes #24
Conversation
|
} | ||
|
||
caches, err := cache.ConnectoCacheClients(ctx, conns, "", isRedisCluster) | ||
caches, err := cache.ConnectoCacheClients(ctx, cacheConns, "", isRedisCluster) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
caches, err := cache.ConnectoCacheClients(ctx, cacheConns, "", isRedisCluster) | |
caches, err := cache.ConnectToCacheClients(ctx, cacheConns, "", isRedisCluster) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This function was not added in this PR, can ignore the comment if it's too much work to change it
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM!
Provides a number of fixes regarding cache and in minor effect store operations, on store, now if one store fails it wont stop the execution of the other stores, same for some cache operations. Also added some checks to not add invalid data to the stores