Skip to content

Commit 726f66b

Browse files
committed
Fix to ensure Identities are correctly marshalled/proxied...
1 parent 8dab462 commit 726f66b

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

GraphQL.AzureFunctionsProxy.IsolatedProcess/GraphQLHttpContextShim.cs

+2-1
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,8 @@ public virtual async Task<HttpContext> CreateGraphQLHttpContextAsync()
4545
requestUri: httpRequestData.Url,
4646
requestHeadersCollection: httpRequestData.Headers,
4747
requestBody: await httpRequestData.ReadAsStringAsync().ConfigureAwait(false),
48-
requestBodyContentType: httpRequestData.GetContentType()
48+
requestBodyContentType: httpRequestData.GetContentType(),
49+
claimsIdentities: httpRequestData.Identities
4950
);
5051

5152
//Ensure we track the HttpContext internally for cleanup when disposed!

0 commit comments

Comments
 (0)