File tree Expand file tree Collapse file tree 2 files changed +1
-15
lines changed
WebJobs.Script.WebHost/Middleware Expand file tree Collapse file tree 2 files changed +1
-15
lines changed Original file line number Diff line number Diff line change @@ -88,10 +88,7 @@ public async Task WarmupInvoke(HttpContext httpContext)
88
88
89
89
private async Task WorkerWarmupAsync ( )
90
90
{
91
- if ( _hostingConfigOptions . Value . WorkerWarmupEnabled )
92
- {
93
- await _webHostRpcWorkerChannelManager . WorkerWarmupAsync ( ) ;
94
- }
91
+ await _webHostRpcWorkerChannelManager . WorkerWarmupAsync ( ) ;
95
92
}
96
93
97
94
internal void ReadRuntimeAssemblyFiles ( )
Original file line number Diff line number Diff line change @@ -32,17 +32,6 @@ public bool FunctionsWorkerDynamicConcurrencyEnabled
32
32
}
33
33
}
34
34
35
- /// <summary>
36
- /// Gets a value indicating whether language workers warmup feature is enabled in the hosting config.
37
- /// </summary>
38
- public bool WorkerWarmupEnabled
39
- {
40
- get
41
- {
42
- return GetFeature ( RpcWorkerConstants . WorkerWarmupEnabled ) == "1" ;
43
- }
44
- }
45
-
46
35
/// <summary>
47
36
/// Gets a value indicating whether worker indexing feature is enabled in the hosting config.
48
37
/// </summary>
You can’t perform that action at this time.
0 commit comments