Skip to content
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

Fixed #267: Memcached failover in non-sticky mode #44

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

d3day
Copy link

@d3day d3day commented Jul 6, 2015

@@ -122,7 +122,7 @@ public void invoke( final Request request, final Response response ) throws IOEx
final String requestId = getURIWithQueryString( request );
if(!_enabled.get() || !_msmContext.equals(request.getContext())) {
getNext().invoke( request, response );
} else if ( _ignorePattern != null && _ignorePattern.matcher( requestId ).matches() ) {
} else if ( _ignorePattern != null && _ignorePattern.matcher( requestId ).matches() && isPrimaryMemcachedNodeIsAvailable(request)) {
Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Adding the check for primary node availability for ignored urls.

@magro magro changed the title Fixed #228: Memcached failover in non-sticky mode Fixed #267: Memcached failover in non-sticky mode Jan 4, 2017
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants