From 84eb164d8733521f688a6f1b7a613bd0a32beb21 Mon Sep 17 00:00:00 2001 From: Karl Burtram Date: Mon, 28 Nov 2016 13:00:41 -0800 Subject: [PATCH] Remove enabling MARS again. This merged down from master (#162) --- .../Connection/ConnectionService.cs | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/Microsoft.SqlTools.ServiceLayer/Connection/ConnectionService.cs b/src/Microsoft.SqlTools.ServiceLayer/Connection/ConnectionService.cs index 98fe5725..f9ae8543 100644 --- a/src/Microsoft.SqlTools.ServiceLayer/Connection/ConnectionService.cs +++ b/src/Microsoft.SqlTools.ServiceLayer/Connection/ConnectionService.cs @@ -183,10 +183,6 @@ namespace Microsoft.SqlTools.ServiceLayer.Connection // create a sql connection instance connectionInfo.SqlConnection = connectionInfo.Factory.CreateSqlConnection(connectionString); - // turning on MARS to avoid break in LanguageService with multiple editors - // we'll remove this once ConnectionService is refactored to not own the LanguageService connection - connectionInfo.ConnectionDetails.MultipleActiveResultSets = true; - // Add a cancellation token source so that the connection OpenAsync() can be cancelled using (source = new CancellationTokenSource()) {