Description
If standalone shared backup is configured with disabled scale-down policy then after failover backup stop itself.
Debugging showed that server.stop() is called in org.apache.activemq.artemis.core.server.impl.SharedStoreBackupActivation in line 102:
public void run() ... boolean scalingDown = SharedStoreSlavePolicy.getScaleDownPolicy() != null; ... if (scalingDown) ... activeMQServer.stop(); ...
There is only check whether scale down policy was defined but not whether it's enabled/disabled.