Skip to content

Commit 3d05700

Browse files
committed
Implementation of isAsyncStarted in proxy request was missing
1 parent ae6fd4f commit 3d05700

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

aws-serverless-java-container-core/src/main/java/com/amazonaws/serverless/proxy/internal/servlet/AwsProxyHttpServletRequest.java

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -668,6 +668,11 @@ public boolean isAsyncSupported() {
668668
return true;
669669
}
670670

671+
@Override
672+
public boolean isAsyncStarted() {
673+
return asyncContext != null;
674+
}
675+
671676

672677
@Override
673678
public AsyncContext startAsync()

0 commit comments

Comments
 (0)