Merge branch 'release' into dev
This commit is contained in:
commit
a457f6da25
|
|
@ -197,7 +197,7 @@ namespace Microsoft.AspNet.Server.Kestrel.Http
|
||||||
{
|
{
|
||||||
foreach (var entry in onStarting)
|
foreach (var entry in onStarting)
|
||||||
{
|
{
|
||||||
entry.Key.Invoke(entry.Value);
|
entry.Key.Invoke(entry.Value).Wait();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
@ -216,7 +216,7 @@ namespace Microsoft.AspNet.Server.Kestrel.Http
|
||||||
{
|
{
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
entry.Key.Invoke(entry.Value);
|
entry.Key.Invoke(entry.Value).Wait();
|
||||||
}
|
}
|
||||||
catch
|
catch
|
||||||
{
|
{
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue