Remove enabling MARS again. This merged down from master (#162)

This commit is contained in:
Karl Burtram
2016-11-28 13:00:41 -08:00
committed by GitHub
parent e5d577dc81
commit 84eb164d87

View File

@@ -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())
{