File tree Expand file tree Collapse file tree 8 files changed +2
-14
lines changed
eng/dockerfile-templates/monitor
tests/Microsoft.DotNet.Docker.Tests Expand file tree Collapse file tree 8 files changed +2
-14
lines changed Original file line number Diff line number Diff line change 7272 DefaultProcess__Filters__0__Key=ProcessId \
7373 DefaultProcess__Filters__0__Value=1 \
7474 # Remove Unix Domain Socket before starting diagnostic port server
75- DiagnosticPort__DeleteEndpointOnStartup=true \{ { if monitorMajorMinor != "6.2 " :
75+ DiagnosticPort__DeleteEndpointOnStartup=true \{ { if dotnetMajor != "6" :
7676 # Server GC mode
7777 DOTNET_gcServer=1 \} }
7878 # Logging: JSON format so that analytic platforms can get discrete entry information
Original file line number Diff line number Diff line change 4747 DefaultProcess__Filters__0__Value=1 \
4848 # Remove Unix Domain Socket before starting diagnostic port server
4949 DiagnosticPort__DeleteEndpointOnStartup=true \
50- # Server GC mode
51- DOTNET_gcServer=1 \
5250 # Logging: JSON format so that analytic platforms can get discrete entry information
5351 Logging__Console__FormatterName=json \
5452 # Logging: Use round-trip date/time format without timezone information (always logged in UTC)
Original file line number Diff line number Diff line change 4747 DefaultProcess__Filters__0__Value=1 \
4848 # Remove Unix Domain Socket before starting diagnostic port server
4949 DiagnosticPort__DeleteEndpointOnStartup=true \
50- # Server GC mode
51- DOTNET_gcServer=1 \
5250 # Logging: JSON format so that analytic platforms can get discrete entry information
5351 Logging__Console__FormatterName=json \
5452 # Logging: Use round-trip date/time format without timezone information (always logged in UTC)
Original file line number Diff line number Diff line change 4747 DefaultProcess__Filters__0__Value=1 \
4848 # Remove Unix Domain Socket before starting diagnostic port server
4949 DiagnosticPort__DeleteEndpointOnStartup=true \
50- # Server GC mode
51- DOTNET_gcServer=1 \
5250 # Logging: JSON format so that analytic platforms can get discrete entry information
5351 Logging__Console__FormatterName=json \
5452 # Logging: Use round-trip date/time format without timezone information (always logged in UTC)
Original file line number Diff line number Diff line change 4747 DefaultProcess__Filters__0__Value=1 \
4848 # Remove Unix Domain Socket before starting diagnostic port server
4949 DiagnosticPort__DeleteEndpointOnStartup=true \
50- # Server GC mode
51- DOTNET_gcServer=1 \
5250 # Logging: JSON format so that analytic platforms can get discrete entry information
5351 Logging__Console__FormatterName=json \
5452 # Logging: Use round-trip date/time format without timezone information (always logged in UTC)
Original file line number Diff line number Diff line change 4747 DefaultProcess__Filters__0__Value=1 \
4848 # Remove Unix Domain Socket before starting diagnostic port server
4949 DiagnosticPort__DeleteEndpointOnStartup=true \
50- # Server GC mode
51- DOTNET_gcServer=1 \
5250 # Logging: JSON format so that analytic platforms can get discrete entry information
5351 Logging__Console__FormatterName=json \
5452 # Logging: Use round-trip date/time format without timezone information (always logged in UTC)
Original file line number Diff line number Diff line change 4747 DefaultProcess__Filters__0__Value=1 \
4848 # Remove Unix Domain Socket before starting diagnostic port server
4949 DiagnosticPort__DeleteEndpointOnStartup=true \
50- # Server GC mode
51- DOTNET_gcServer=1 \
5250 # Logging: JSON format so that analytic platforms can get discrete entry information
5351 Logging__Console__FormatterName=json \
5452 # Logging: Use round-trip date/time format without timezone information (always logged in UTC)
Original file line number Diff line number Diff line change @@ -156,7 +156,7 @@ public void VerifyEnvironmentVariables(ProductImageData imageData)
156156 variables . Add ( new EnvironmentVariableInfo ( "DefaultProcess__Filters__0__Value" , "1" ) ) ;
157157 // Existing (orphaned) diagnostic port should be delete before starting server
158158 variables . Add ( new EnvironmentVariableInfo ( "DiagnosticPort__DeleteEndpointOnStartup" , "true" ) ) ;
159- if ( imageData . Version . ToString ( ) != "6.2" )
159+ if ( imageData . Version . Major != 6 )
160160 {
161161 // GC mode should be set to Server
162162 variables . Add ( new EnvironmentVariableInfo ( "DOTNET_gcServer" , "1" ) ) ;
You can’t perform that action at this time.
0 commit comments