Merge branch 'release' into dev

This commit is contained in:
Stephen Halter 2015-07-21 14:18:37 -07:00
commit a457f6da25
1 changed files with 2 additions and 2 deletions

View File

@ -197,7 +197,7 @@ namespace Microsoft.AspNet.Server.Kestrel.Http
{
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
{
entry.Key.Invoke(entry.Value);
entry.Key.Invoke(entry.Value).Wait();
}
catch
{