This commit is contained in:
Phillip Hoff 2021-10-14 09:15:24 -07:00
Родитель e440979cca
Коммит 6b3662f997
2 изменённых файлов: 5 добавлений и 4 удалений

Просмотреть файл

@ -1,12 +1,12 @@
{
"tools": {
"dotnet": "6.0.100-preview.7.21379.14",
"dotnet": "6.0.100-rc.2.21505.57",
"runtimes": {
"dotnet": [
"6.0.0-preview.7.21377.19"
"6.0.0-rc.2.21480.5"
],
"aspnetcore": [
"6.0.0-preview.7.21378.6"
"6.0.0-rc.2.21480.10"
]
}
},

Просмотреть файл

@ -799,7 +799,8 @@ services:
[Fact]
public async Task IngressAllIPTest()
{
await TestIngressIP($"'*'", GetLiveIPAddresses().FirstOrDefault());
// TODO: Possible null reference (the default case).
await TestIngressIP($"'*'", GetLiveIPAddresses().FirstOrDefault()!);
}