You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm getting the following validation error for a content package which has a install hook configured:
Using install hooks in mutable content packages leads to deployment failures as the underlying service user on the publish does not have the right to execute those.
This install hook is only needed for local development and is only enabled by an Maven extra profile.
Therefore I tried to disable the error through the allowHooksInMutableContent property, but the error is still reported.
After checking the code it seem the following line is missing a check for the allowHooksInMutableContent variable:
I'm getting the following validation error for a content package which has a install hook configured:
This install hook is only needed for local development and is only enabled by an Maven extra profile.
Therefore I tried to disable the error through the
allowHooksInMutableContent
property, but the error is still reported.After checking the code it seem the following line is missing a check for the
allowHooksInMutableContent
variable:aem-cloud-validator/src/main/java/biz/netcentric/filevault/validator/aem/cloud/AemCloudValidator.java
Line 230 in fe6a3c7
It probably should look like this:
Also I don't understand the code enough, as it seems strange to me that there are three checks for the install hooks in the same file.
The text was updated successfully, but these errors were encountered: