File tree Expand file tree Collapse file tree 6 files changed +0
-11
lines changed
ServiceSupervisorCommon/DataStructures Expand file tree Collapse file tree 6 files changed +0
-11
lines changed Original file line number Diff line number Diff line change @@ -339,7 +339,6 @@ private SupervisedProcess MoveBinding(SupervisePost binding) {
339
339
sp . Config . Domain = binding . Domain ;
340
340
sp . Config . Username = binding . Username ;
341
341
sp . Config . Password = binding . Password ;
342
- sp . Config . AutoStart = binding . AutoStart . ToBoolean ( ) ;
343
342
sp . Config . ExitRetries = binding . ExitRetries . ToInt32 ( ) ;
344
343
sp . Config . ExitCodes = binding . ExitCodes . ToInt32List ( ) ;
345
344
sp . Config . WorkingDirectory = binding . WorkingDirectory ;
Original file line number Diff line number Diff line change @@ -38,10 +38,6 @@ public SupervisePostValidation() {
38
38
. NotEmpty ( )
39
39
. MaximumLength ( 32 ) ;
40
40
41
- RuleFor ( p => p . AutoStart )
42
- . NotEmpty ( )
43
- . IsBoolean ( ) ;
44
-
45
41
RuleFor ( p => p . ExitRetries )
46
42
. NotEmpty ( )
47
43
. IsInteger ( ) ;
Original file line number Diff line number Diff line change @@ -32,9 +32,6 @@ public SuperviseUpdateValidation() {
32
32
RuleFor ( p => p . Password )
33
33
. MaximumLength ( 32 ) ;
34
34
35
- RuleFor ( p => p . AutoStart )
36
- . IsBoolean ( ) ;
37
-
38
35
RuleFor ( p => p . ExitRetries )
39
36
. IsInteger ( ) ;
40
37
Original file line number Diff line number Diff line change @@ -10,7 +10,6 @@ public class SuperviseDTI {
10
10
public String Domain { get ; set ; }
11
11
public String Username { get ; set ; }
12
12
public String Password { get ; set ; }
13
- public Boolean AutoStart { get ; set ; }
14
13
public Int32 ExitRetries { get ; set ; }
15
14
public Boolean AutoRestart { get ; set ; }
16
15
public List < Int32 > ExitCodes { get ; set ; }
Original file line number Diff line number Diff line change @@ -12,7 +12,6 @@ public class SuperviseDTO {
12
12
public String Username { get ; set ; }
13
13
public String Password { get ; set ; }
14
14
public Int32 RetryCount { get ; set ; }
15
- public Boolean AutoStart { get ; set ; }
16
15
public Int32 ExitRetries { get ; set ; }
17
16
public Boolean AutoRestart { get ; set ; }
18
17
public List < Int32 > ExitCodes { get ; set ; }
Original file line number Diff line number Diff line change @@ -9,7 +9,6 @@ public class SupervisePost {
9
9
public String Domain { get ; set ; }
10
10
public String Username { get ; set ; }
11
11
public String Password { get ; set ; }
12
- public String AutoStart { get ; set ; }
13
12
public String ExitCodes { get ; set ; }
14
13
public String ExitRetries { get ; set ; }
15
14
public String AutoRestart { get ; set ; }
You can’t perform that action at this time.
0 commit comments