Fix typo in ExecutionHandler class name (#2185)

This commit is contained in:
Cory Rivera
2023-08-22 16:43:35 -07:00
committed by GitHub
parent 08e855aa1d
commit 6497f5d72d
10 changed files with 11 additions and 11 deletions

View File

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

View File

@@ -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);
}

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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