mirror of
https://github.com/ckaczor/sqltoolsservice.git
synced 2026-01-17 09:35:37 -05:00
Fix typo in ExecutionHandler class name (#2185)
This commit is contained in:
@@ -125,7 +125,7 @@ namespace Microsoft.SqlTools.ServiceLayer.ObjectManagement
|
||||
string sqlScript = string.Empty;
|
||||
using (var actions = new AppRoleActions(dataContainer, configAction, prototype))
|
||||
{
|
||||
var executionHandler = new ExecutonHandler(actions);
|
||||
var executionHandler = new ExecutionHandler(actions);
|
||||
executionHandler.RunNow(runType, this);
|
||||
if (executionHandler.ExecutionResult == ExecutionMode.Failure)
|
||||
{
|
||||
|
||||
@@ -72,7 +72,7 @@ namespace Microsoft.SqlTools.ServiceLayer.ObjectManagement
|
||||
|
||||
using (CredentialActions actions = new CredentialActions(dataContainer, credential, configAction))
|
||||
{
|
||||
var executionHandler = new ExecutonHandler(actions);
|
||||
var executionHandler = new ExecutionHandler(actions);
|
||||
executionHandler.RunNow(runType, this);
|
||||
}
|
||||
|
||||
|
||||
@@ -659,7 +659,7 @@ namespace Microsoft.SqlTools.ServiceLayer.ObjectManagement
|
||||
|
||||
string sqlScript = string.Empty;
|
||||
using (var actions = new DatabaseActions(dataContainer, configAction, prototype))
|
||||
using (var executionHandler = new ExecutonHandler(actions))
|
||||
using (var executionHandler = new ExecutionHandler(actions))
|
||||
{
|
||||
executionHandler.RunNow(runType, this);
|
||||
if (executionHandler.ExecutionResult == ExecutionMode.Failure)
|
||||
|
||||
@@ -124,7 +124,7 @@ namespace Microsoft.SqlTools.ServiceLayer.ObjectManagement
|
||||
string sqlScript = string.Empty;
|
||||
using (var actions = new DatabaseRoleActions(dataContainer, configAction, prototype))
|
||||
{
|
||||
var executionHandler = new ExecutonHandler(actions);
|
||||
var executionHandler = new ExecutionHandler(actions);
|
||||
executionHandler.RunNow(runType, this);
|
||||
if (executionHandler.ExecutionResult == ExecutionMode.Failure)
|
||||
{
|
||||
|
||||
@@ -165,7 +165,7 @@ namespace Microsoft.SqlTools.ServiceLayer.ObjectManagement
|
||||
string sqlScript = string.Empty;
|
||||
using (var actions = new LoginActions(dataContainer, configAction, prototype))
|
||||
{
|
||||
var executionHandler = new ExecutonHandler(actions);
|
||||
var executionHandler = new ExecutionHandler(actions);
|
||||
executionHandler.RunNow(runType, this);
|
||||
if (executionHandler.ExecutionResult == ExecutionMode.Failure)
|
||||
{
|
||||
|
||||
@@ -101,7 +101,7 @@ namespace Microsoft.SqlTools.ServiceLayer.ObjectManagement
|
||||
{
|
||||
using (var actions = new ServerActions(dataContainer, prototype, configAction))
|
||||
{
|
||||
var executionHandler = new ExecutonHandler(actions);
|
||||
var executionHandler = new ExecutionHandler(actions);
|
||||
executionHandler.RunNow(runType, this);
|
||||
if (executionHandler.ExecutionResult == ExecutionMode.Failure)
|
||||
{
|
||||
|
||||
@@ -108,7 +108,7 @@ namespace Microsoft.SqlTools.ServiceLayer.ObjectManagement
|
||||
string sqlScript = string.Empty;
|
||||
using (var actions = new ServerRoleActions(dataContainer, configAction, prototype))
|
||||
{
|
||||
var executionHandler = new ExecutonHandler(actions);
|
||||
var executionHandler = new ExecutionHandler(actions);
|
||||
executionHandler.RunNow(runType, this);
|
||||
if (executionHandler.ExecutionResult == ExecutionMode.Failure)
|
||||
{
|
||||
|
||||
@@ -292,7 +292,7 @@ namespace Microsoft.SqlTools.ServiceLayer.ObjectManagement
|
||||
CDataContainer dataContainer = CreateUserDataContainer(serverConnection, user, configAction, databaseName);
|
||||
using (var actions = new UserActions(dataContainer, configAction, user, originalData))
|
||||
{
|
||||
var executionHandler = new ExecutonHandler(actions);
|
||||
var executionHandler = new ExecutionHandler(actions);
|
||||
executionHandler.RunNow(runType, this);
|
||||
if (executionHandler.ExecutionResult == ExecutionMode.Failure)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user