Skip to content

Commit

Permalink
fix broken commit
Browse files Browse the repository at this point in the history
Previous commit (bee43f) contained a Guava-version-specific feature
that is missing from Guava v17.  This patch fixes this issue.
  • Loading branch information
paulmillar committed Jan 19, 2015
1 parent 1a9e691 commit 1aa9550
Showing 1 changed file with 2 additions and 1 deletion.
Expand Up @@ -734,7 +734,8 @@ public void onFailure(Throwable e)
reply.fail(message, CacheException.UNEXPECTED_SYSTEM_EXCEPTION,
"failed to query pool: " + e.getMessage());
}
}, MoreExecutors.directExecutor());
}, MoreExecutors.sameThreadExecutor());


return reply;
}
Expand Down

0 comments on commit 1aa9550

Please sign in to comment.