Skip to content

Commit

Permalink
Fixes validation error when deploying an application to a cluster.
Browse files Browse the repository at this point in the history
This is a regression introduced in 7.0.4 with #24368
Signed-off-by:Ondro Mihalyi <mihalyi@omnifish.ee>
  • Loading branch information
OndroMih committed May 19, 2023
1 parent 58431b8 commit e5aec10
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -395,7 +395,7 @@ default boolean isInstance() {
}

default boolean isVirtual() {
return getExtensionsByType(VirtualMachineExtension.class).isEmpty();
return !getExtensionsByType(VirtualMachineExtension.class).isEmpty();
}

default ApplicationRef getApplicationRef(String appName) {
Expand Down

0 comments on commit e5aec10

Please sign in to comment.