Skip to content

Commit 86cc378

Browse files
committed
Fixed HttpRequestHandlerImpl.
1 parent 9153aa5 commit 86cc378

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

graphql-java-servlet/src/main/java/graphql/kickstart/servlet/HttpRequestHandlerImpl.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ private void execute(GraphQLInvocationInput invocationInput, HttpServletRequest
5555
if (configuration.getResponseCache() != null) {
5656
CachedResponse cachedResponse = null;
5757
try {
58-
cachedResponse = configuration.getResponseCache().getCachedResponse(request, invocationInput);
58+
cachedResponse = configuration.getResponseCache().get(request, invocationInput);
5959
} catch (Throwable t) {
6060
log.warn(t.getMessage(), t);
6161
log.warn("Ignore read from cache, unexpected error happened");

0 commit comments

Comments
 (0)