File tree Expand file tree Collapse file tree 3 files changed +4
-6
lines changed
WebJobs.Script.Grpc/Channel Expand file tree Collapse file tree 3 files changed +4
-6
lines changed Original file line number Diff line number Diff line change 6
6
7
7
- Patch Durable Functions Extension version check (https://github.com/Azure/azure-functions-host/pull/9331 )
8
8
- Update Java Worker Version to [ 2.12.0] ( https://github.com/Azure/azure-functions-java-worker/releases/tag/2.12.0 )
9
-
10
-
9
+ - Remove feature flag for http proxying (https://github.com/Azure/azure-functions-host/pull/9341 )
Original file line number Diff line number Diff line change @@ -430,7 +430,7 @@ internal void WorkerInitResponse(GrpcEvent initEvent)
430
430
431
431
// If http proxying is enabled, we need to get the proxying endpoint of this worker
432
432
var httpUri = _workerCapabilities . GetCapabilityState ( RpcWorkerConstants . HttpUri ) ;
433
- if ( ! string . IsNullOrEmpty ( httpUri ) && FeatureFlags . IsEnabled ( ScriptConstants . FeatureFlagEnableHttpProxying ) )
433
+ if ( ! string . IsNullOrEmpty ( httpUri ) )
434
434
{
435
435
try
436
436
{
@@ -763,7 +763,7 @@ await SendStreamingMessageAsync(new StreamingMessage
763
763
context . CancellationToken . Register ( ( ) => SendInvocationCancel ( invocationRequest . InvocationId ) ) ;
764
764
}
765
765
766
- if ( IsHttpProxyingWorker && FeatureFlags . IsEnabled ( ScriptConstants . FeatureFlagEnableHttpProxying ) && context . FunctionMetadata . IsHttpTriggerFunction ( ) )
766
+ if ( IsHttpProxyingWorker && context . FunctionMetadata . IsHttpTriggerFunction ( ) )
767
767
{
768
768
var aspNetTask = _httpProxyService . ForwardAsync ( context , _httpProxyEndpoint ) . AsTask ( ) ;
769
769
@@ -963,7 +963,7 @@ internal async Task InvokeResponse(InvocationResponse invokeResponse)
963
963
{
964
964
if ( invokeResponse . Result . IsInvocationSuccess ( context . ResultSource , capabilityEnabled ) )
965
965
{
966
- if ( FeatureFlags . IsEnabled ( ScriptConstants . FeatureFlagEnableHttpProxying ) && IsHttpProxyingWorker )
966
+ if ( IsHttpProxyingWorker )
967
967
{
968
968
if ( context . Properties . TryGetValue ( ScriptConstants . HttpProxyTask , out Task < ForwarderError > httpProxyTask ) )
969
969
{
Original file line number Diff line number Diff line change @@ -126,7 +126,6 @@ public static class ScriptConstants
126
126
public const string FeatureFlagEnableWorkerIndexing = "EnableWorkerIndexing" ;
127
127
public const string FeatureFlagEnableDebugTracing = "EnableDebugTracing" ;
128
128
public const string FeatureFlagEnableProxies = "EnableProxies" ;
129
- public const string FeatureFlagEnableHttpProxying = "EnableHttpProxying" ;
130
129
public const string HostingConfigDisableLinuxAppServiceDetailedExecutionEvents = "DisableLinuxExecutionDetails" ;
131
130
public const string HostingConfigDisableLinuxAppServiceExecutionEventLogBackoff = "DisableLinuxLogBackoff" ;
132
131
public const string FeatureFlagEnableLegacyDurableVersionCheck = "EnableLegacyDurableVersionCheck" ;
You can’t perform that action at this time.
0 commit comments