Skip to content

Commit

Permalink
Merge pull request #24421 from OndroMih/ondromih-fix-deployment-to-cl…
Browse files Browse the repository at this point in the history
…uster

Fixes validation error when deploying an application to a cluster.
  • Loading branch information
arjantijms committed May 19, 2023
2 parents 58431b8 + e5aec10 commit eae5330
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 eae5330

Please sign in to comment.