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

@@ -846,7 +846,7 @@ namespace Microsoft.SqlTools.ServiceLayer.Agent
internal void ExecuteAction(ManagementActionBase action, RunType runType)
{
var executionHandler = new ExecutonHandler(action);
var executionHandler = new ExecutionHandler(action);
executionHandler.RunNow(runType, this);
if (executionHandler.ExecutionResult == ExecutionMode.Failure)
{

View File

@@ -110,7 +110,7 @@ namespace Microsoft.SqlTools.ServiceLayer.Management
/// <summary>
/// manager that hooks up tree view with the individual views
/// </summary>
internal sealed class ExecutonHandler : IDisposable
internal sealed class ExecutionHandler : IDisposable
{
/// <summary>
/// handler that we delegate execution related tasks to
@@ -148,7 +148,7 @@ namespace Microsoft.SqlTools.ServiceLayer.Management
/// using this provider whenever it has to specify an IServiceProvider to a component
/// that will be managed by this class
/// </param>
public ExecutonHandler(IExecutionAwareManagementAction managementAction)
public ExecutionHandler(IExecutionAwareManagementAction managementAction)
{
this.managementAction = managementAction;
this.executionHandlerDelegate = new ExecutionHandlerDelegate(managementAction);

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