@@ -406,21 +406,19 @@ public async Task Initialize_WithLatestSiteExtensionVersion_LogsWarning()
406
406
}
407
407
408
408
[ Theory ]
409
- [ InlineData ( "dotnet" , "" , "" , "" , "dotnet" ) ]
410
- [ InlineData ( "dotnet" , "~2" , "" , "" , "dotnet-~2" ) ]
411
- [ InlineData ( "python" , "~2" , "" , "" , "python" ) ]
412
- [ InlineData ( "python" , "~2" , "" , "3.6" , "python-3.6" ) ]
413
- [ InlineData ( "python" , "~3" , "~8" , "3.7" , "python-3.7" ) ]
414
- [ InlineData ( "node" , "~3" , "" , "3.6" , "node" ) ]
415
- [ InlineData ( "node" , "~2" , "~8" , "3.6" , "node-~8" ) ]
416
- [ InlineData ( "powershell" , "~2" , "" , "" , "powershell" ) ]
417
- [ InlineData ( "powershell" , "~2" , "~10" , "3.6" , "powershell" ) ]
418
- [ InlineData ( "java" , "~3" , "" , "" , "java" ) ]
419
- [ InlineData ( "java" , "~3" , "~8" , "3.6" , "java" ) ]
409
+ [ InlineData ( "dotnet" , "" , "" , "dotnet" ) ]
410
+ [ InlineData ( "dotnet" , "" , "~2" , "dotnet-~2" ) ]
411
+ [ InlineData ( "python" , "~2" , "" , "python" ) ]
412
+ [ InlineData ( "python" , "~2" , "3.6" , "python-3.6" ) ]
413
+ [ InlineData ( "python" , "~3" , "3.7" , "python-3.7" ) ]
414
+ [ InlineData ( "node" , "~3" , "~8" , "node-~8" ) ]
415
+ [ InlineData ( "node" , "~2" , "~8" , "node-~8" ) ]
416
+ [ InlineData ( "powershell" , "~2" , "" , "powershell" ) ]
417
+ [ InlineData ( "powershell" , "~2" , "~7" , "powershell-~7" ) ]
418
+ [ InlineData ( "java" , "~3" , "" , "java" ) ]
420
419
public async Task Initialize_WithRuntimeAndWorkerVersion_ReportRuntimeToMetricsTable (
421
420
string functionsWorkerRuntime ,
422
421
string functionsExtensionVersion ,
423
- string websiteNodeDefaultVersion ,
424
422
string functionsWorkerRuntimeVersion ,
425
423
string expectedRuntimeStack )
426
424
{
@@ -437,8 +435,6 @@ public async Task Initialize_WithRuntimeAndWorkerVersion_ReportRuntimeToMetricsT
437
435
RpcWorkerConstants . FunctionWorkerRuntimeSettingName , functionsWorkerRuntime ) ;
438
436
environment . SetEnvironmentVariable (
439
437
EnvironmentSettingNames . FunctionsExtensionVersion , functionsExtensionVersion ) ;
440
- environment . SetEnvironmentVariable (
441
- EnvironmentSettingNames . WebsiteNodeDefaultVersion , websiteNodeDefaultVersion ) ;
442
438
environment . SetEnvironmentVariable (
443
439
RpcWorkerConstants . FunctionWorkerRuntimeVersionSettingName , functionsWorkerRuntimeVersion ) ;
444
440
0 commit comments