Skip to content
Snippets Groups Projects
Commit f7c7cb8e authored by tranoris's avatar tranoris
Browse files

Fixes issue #11

parent 8fcfc163
No related branches found
No related tags found
1 merge request!11Merging 2024Q2_RC into main, creating 2024Q2 Release
Pipeline #5853 passed
...@@ -840,15 +840,15 @@ public class Service extends BaseRootNamedEntity { ...@@ -840,15 +840,15 @@ public class Service extends BaseRootNamedEntity {
if ( allActive ) { if ( allActive ) {
return ServiceStateType.ACTIVE ; nextState = ServiceStateType.ACTIVE ;
} else if ( allTerminated ) { } else if ( allTerminated ) {
return ServiceStateType.TERMINATED ; nextState = ServiceStateType.TERMINATED ;
} else if ( existsInactive ) { } else if ( existsInactive ) {
return ServiceStateType.INACTIVE ; nextState = ServiceStateType.INACTIVE ;
} else if ( existsReserved ) { } else if ( existsReserved ) {
return ServiceStateType.RESERVED ; nextState = ServiceStateType.RESERVED ;
} else if ( existsTerminated ) { } else if ( existsTerminated ) {
return ServiceStateType.INACTIVE ; nextState = ServiceStateType.INACTIVE ;
} }
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment