Details
Description
In KARAF-6953 a new global configuration setting autoRefresh was added. When that property is set to false then in the Deployer.deploy method the logic is reversed, i.e. auto refreshing takes place.
This happens by the code:
if (!request.autoRefresh) {
noRefreshUnmanaged = request.autoRefresh;
noRefreshManaged = request.autoRefresh;
noRefresh = request.autoRefresh;
}
The result is that all noRefresh... variables are set to false.