Skip to content

Commit 0225f77

Browse files
committed
Update arm-runner-patch.tpl
The runtimeconfig.json files seem to have changed on the latest Amazon Linux AMI. When running the user data scripts, the patch of these files fails which causes initialization of the runner instance to fail.
1 parent 56c1ece commit 0225f77

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

modules/runners/templates/arm-runner-patch.tpl

+6-6
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ diff -Naur a/bin/Runner.Listener.runtimeconfig.json b/bin/Runner.Listener.runtim
88
}
99
],
1010
"configProperties": {
11-
- "System.Runtime.TieredCompilation.QuickJit": true
12-
+ "System.Runtime.TieredCompilation.QuickJit": true,
11+
- "System.Reflection.Metadata.MetadataUpdater.IsSupported": false
12+
+ "System.Reflection.Metadata.MetadataUpdater.IsSupported": false,
1313
+ "System.Globalization.Invariant": true
1414
}
1515
}
@@ -23,8 +23,8 @@ diff -Naur a/bin/Runner.PluginHost.runtimeconfig.json b/bin/Runner.PluginHost.ru
2323
}
2424
],
2525
"configProperties": {
26-
- "System.Runtime.TieredCompilation.QuickJit": true
27-
+ "System.Runtime.TieredCompilation.QuickJit": true,
26+
- "System.Reflection.Metadata.MetadataUpdater.IsSupported": false
27+
+ "System.Reflection.Metadata.MetadataUpdater.IsSupported": false,
2828
+ "System.Globalization.Invariant": true
2929
}
3030
}
@@ -38,8 +38,8 @@ diff -Naur a/bin/Runner.Worker.runtimeconfig.json b/bin/Runner.Worker.runtimecon
3838
}
3939
],
4040
"configProperties": {
41-
- "System.Runtime.TieredCompilation.QuickJit": true
42-
+ "System.Runtime.TieredCompilation.QuickJit": true,
41+
- "System.Reflection.Metadata.MetadataUpdater.IsSupported": false
42+
+ "System.Reflection.Metadata.MetadataUpdater.IsSupported": false,
4343
+ "System.Globalization.Invariant": true
4444
}
4545
}

0 commit comments

Comments
 (0)