Skip to content

Commit 3e99503

Browse files
committed
removed a data item
1 parent d15cfaa commit 3e99503

File tree

6 files changed

+0
-11
lines changed

6 files changed

+0
-11
lines changed

ServiceSupervisor/Services/SuperviseService.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -339,7 +339,6 @@ private SupervisedProcess MoveBinding(SupervisePost binding) {
339339
sp.Config.Domain = binding.Domain;
340340
sp.Config.Username = binding.Username;
341341
sp.Config.Password = binding.Password;
342-
sp.Config.AutoStart = binding.AutoStart.ToBoolean();
343342
sp.Config.ExitRetries = binding.ExitRetries.ToInt32();
344343
sp.Config.ExitCodes = binding.ExitCodes.ToInt32List();
345344
sp.Config.WorkingDirectory = binding.WorkingDirectory;

ServiceSupervisor/Web/Validation/SupervisePostValidation.cs

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -38,10 +38,6 @@ public SupervisePostValidation() {
3838
.NotEmpty()
3939
.MaximumLength(32);
4040

41-
RuleFor(p => p.AutoStart)
42-
.NotEmpty()
43-
.IsBoolean();
44-
4541
RuleFor(p => p.ExitRetries)
4642
.NotEmpty()
4743
.IsInteger();

ServiceSupervisor/Web/Validation/SuperviseUpdateValidation.cs

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,6 @@ public SuperviseUpdateValidation() {
3232
RuleFor(p => p.Password)
3333
.MaximumLength(32);
3434

35-
RuleFor(p => p.AutoStart)
36-
.IsBoolean();
37-
3835
RuleFor(p => p.ExitRetries)
3936
.IsInteger();
4037

ServiceSupervisorCommon/DataStructures/SuperviseDTI.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@ public class SuperviseDTI {
1010
public String Domain { get; set; }
1111
public String Username { get; set; }
1212
public String Password { get; set; }
13-
public Boolean AutoStart { get; set; }
1413
public Int32 ExitRetries { get; set; }
1514
public Boolean AutoRestart { get; set; }
1615
public List<Int32> ExitCodes { get; set; }

ServiceSupervisorCommon/DataStructures/SuperviseDTO.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@ public class SuperviseDTO {
1212
public String Username { get; set; }
1313
public String Password { get; set; }
1414
public Int32 RetryCount { get; set; }
15-
public Boolean AutoStart { get; set; }
1615
public Int32 ExitRetries { get; set; }
1716
public Boolean AutoRestart { get; set; }
1817
public List<Int32> ExitCodes { get; set; }

ServiceSupervisorCommon/DataStructures/SupervisePost.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ public class SupervisePost {
99
public String Domain { get; set; }
1010
public String Username { get; set; }
1111
public String Password { get; set; }
12-
public String AutoStart { get; set; }
1312
public String ExitCodes { get; set; }
1413
public String ExitRetries { get; set; }
1514
public String AutoRestart { get; set; }

0 commit comments

Comments
 (0)