Skip to content
Snippets Groups Projects
Commit ff3a6d2b authored by Patryk Kazimierowski's avatar Patryk Kazimierowski
Browse files

added scaling states

parent 117014d7
No related branches found
No related tags found
2 merge requests!273Release 1.8.0 update,!268Resolve "Add application instance scaling support"
...@@ -37,7 +37,13 @@ public enum NmServiceDeploymentState { ...@@ -37,7 +37,13 @@ public enum NmServiceDeploymentState {
UPGRADED(true, true), UPGRADED(true, true),
UPGRADE_FAILED(false, false), UPGRADE_FAILED(false, false),
ERROR(false, false), ERROR(false, false),
FAILED_APPLICATION_REMOVED(false, false); FAILED_APPLICATION_REMOVED(false, false),
SCALE_DOWN_INITIATED(true, false),
SCALED_DOWN(true, false),
SCALE_DOWN_FAILED(false,false),
SCALE_UP_INITIATED(false, false),
SCALED_UP(false, true),
SCALE_UP_FAILED(false,false);
private boolean isRunning; private boolean isRunning;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment