You are viewing a plain text version of this content. The canonical link for it is here.
Posted to stonehenge-commits@incubator.apache.org by be...@apache.org on 2009/07/23 15:10:46 UTC

svn commit: r797096 - /incubator/stonehenge/trunk/stocktrader/dotnet/order_processor/OrderProcessorConsoleServiceHost/Program.cs

Author: bendewey
Date: Thu Jul 23 15:10:45 2009
New Revision: 797096

URL: http://svn.apache.org/viewvc?rev=797096&view=rev
Log:
Bug from STONEHENGE-83, service host was being disposed too early

Modified:
    incubator/stonehenge/trunk/stocktrader/dotnet/order_processor/OrderProcessorConsoleServiceHost/Program.cs

Modified: incubator/stonehenge/trunk/stocktrader/dotnet/order_processor/OrderProcessorConsoleServiceHost/Program.cs
URL: http://svn.apache.org/viewvc/incubator/stonehenge/trunk/stocktrader/dotnet/order_processor/OrderProcessorConsoleServiceHost/Program.cs?rev=797096&r1=797095&r2=797096&view=diff
==============================================================================
--- incubator/stonehenge/trunk/stocktrader/dotnet/order_processor/OrderProcessorConsoleServiceHost/Program.cs (original)
+++ incubator/stonehenge/trunk/stocktrader/dotnet/order_processor/OrderProcessorConsoleServiceHost/Program.cs Thu Jul 23 15:10:45 2009
@@ -138,9 +138,10 @@
                 {
                     StockTraderUtility.Logger.WriteException(ex);
                 }
+
+                Console.WriteLine("Press Enter to quit.");
+                Console.ReadLine();
             }
-            Console.WriteLine("Press Enter to quit.");
-            Console.ReadLine();
         }
     }
 }