diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2013-05-30 15:58:07 -0400 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2013-05-30 15:58:07 -0400 |
| commit | 3387dac01d7125f830a77f5d0446fda336e294cd (patch) | |
| tree | 5019e0402c037d301fc5f46584c46a2d1bdb07e7 /MediaBrowser.Server.Implementations/HttpServer/HttpServer.cs | |
| parent | a880a44f4aa29a42205007cd20cd06fc66278e62 (diff) | |
remote control progress
Diffstat (limited to 'MediaBrowser.Server.Implementations/HttpServer/HttpServer.cs')
| -rw-r--r-- | MediaBrowser.Server.Implementations/HttpServer/HttpServer.cs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/MediaBrowser.Server.Implementations/HttpServer/HttpServer.cs b/MediaBrowser.Server.Implementations/HttpServer/HttpServer.cs index 023df3177..f4bf501e3 100644 --- a/MediaBrowser.Server.Implementations/HttpServer/HttpServer.cs +++ b/MediaBrowser.Server.Implementations/HttpServer/HttpServer.cs @@ -308,7 +308,7 @@ namespace MediaBrowser.Server.Implementations.HttpServer RaiseReceiveWebRequest(context); - await Task.Run(() => + await Task.Factory.StartNew(() => { try { @@ -318,6 +318,7 @@ namespace MediaBrowser.Server.Implementations.HttpServer { _logger.ErrorException("ProcessRequest failure", ex); } + }).ConfigureAwait(false); } |
