chagned strings to enums and can edit step completion actions (#827)

This commit is contained in:
Aditya Bist
2019-06-20 00:30:37 -07:00
committed by GitHub
parent 347d233e95
commit fc50913f14
5 changed files with 26 additions and 26 deletions

View File

@@ -44,7 +44,9 @@ namespace Microsoft.SqlTools.ServiceLayer.Agent
this.data.ID = stepInfo.Id;
this.data.Name = stepInfo.StepName;
this.data.Command = stepInfo.Command;
this.data.Subsystem = AgentUtilities.ConvertToAgentSubSytem(stepInfo.SubSystem);
this.data.Subsystem = stepInfo.SubSystem;
this.data.FailureAction = stepInfo.FailureAction;
this.data.SuccessAction = stepInfo.SuccessAction;
}
protected override bool DoPreProcessExecution(RunType runType, out ExecutionMode executionResult)