We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9047813 commit 5a4879cCopy full SHA for 5a4879c
src/WebJobs.Script/Rpc/LanguageWorkerChannel.cs
@@ -10,7 +10,7 @@
10
using System.Reactive.Linq;
11
using System.Threading.Tasks;
12
using System.Threading.Tasks.Dataflow;
13
-using Microsoft.AspNetCore.Http.Internal;
+using Microsoft.AspNetCore.Http;
14
using Microsoft.Azure.WebJobs.Script.Description;
15
using Microsoft.Azure.WebJobs.Script.Diagnostics;
16
using Microsoft.Azure.WebJobs.Script.Eventing;
@@ -311,7 +311,7 @@ internal void SendInvocationRequest(ScriptInvocationContext context)
311
{
312
if (pair.Value != null)
313
314
- if ((pair.Value is DefaultHttpRequest) && IsTriggerMetadataPopulatedByWorker())
+ if ((pair.Value is HttpRequest) && IsTriggerMetadataPopulatedByWorker())
315
316
continue;
317
}
0 commit comments