File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed
src/main/java/it/reply/orchestrator/service/deployment/providers Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -1028,13 +1028,13 @@ public boolean isActionComplete(ActionMessage deploymentMessage) {
1028
1028
client -> client .getVmInfo (deployment .getEndpoint (), resource .getIaasId ()));
1029
1029
1030
1030
Optional <String > tmpState = vmInfo .getVmProperties ()
1031
- .stream ()
1032
- .filter (Objects ::nonNull )
1033
- .filter (properties -> "system" .equals (properties .get ("class" )))
1034
- .map (properties -> (String ) properties .get ("state" )).findAny ();
1031
+ .stream ()
1032
+ .filter (Objects ::nonNull )
1033
+ .filter (properties -> "system" .equals (properties .get ("class" )))
1034
+ .map (properties -> (String ) properties .get ("state" )).findAny ();
1035
1035
1036
1036
String state ;
1037
- if (tmpState .isPresent ()){
1037
+ if (tmpState .isPresent ()) {
1038
1038
state = tmpState .get ();
1039
1039
} else {
1040
1040
throw new ImClientException ("Null pointer exception" );
You can’t perform that action at this time.
0 commit comments