mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-10-08 14:51:49 +00:00
Merged 5.0.N (5.0.3) to HEAD (5.1) (PARTIAL MERGE)
110088: Merged 5.0.2 (5.0.2) to 5.0.N (5.0.3) 110052: MNT-14579: TS starting in read-only mode after applying 5.0.2 build 64 - This intermittent issue was probably caused by the SysAdminParams.afterPropertiesSet checking for a valid dictionary. If this call took place too early, then it would never allow the system to be in read-write mode unless rebooted. - Removed the dictionary check from SysAdminParamsImpl; it is now only responsible for the 'server.allowWrite' property - Call the TransactionServiceImpl's read-write veto code if the 'server.allowWrite' property changes - Better logging when vetoes are placed but also when vetoes are removed git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@110214 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
@@ -25,7 +25,6 @@ import javax.transaction.UserTransaction;
|
||||
import junit.framework.TestCase;
|
||||
|
||||
import org.alfresco.model.ContentModel;
|
||||
import org.alfresco.repo.admin.SysAdminParams;
|
||||
import org.alfresco.repo.security.authentication.AuthenticationUtil;
|
||||
import org.alfresco.repo.security.permissions.AccessDeniedException;
|
||||
import org.alfresco.repo.transaction.RetryingTransactionHelper.RetryingTransactionCallback;
|
||||
@@ -76,7 +75,6 @@ public class TransactionServiceImplTest extends TestCase
|
||||
transactionService = new TransactionServiceImpl();
|
||||
transactionService.setTransactionManager(transactionManager);
|
||||
transactionService.setAllowWrite(true, vetoName);
|
||||
transactionService.setSysAdminParams((SysAdminParams) ctx.getBean("sysAdminParams"));
|
||||
|
||||
nodeService = (NodeService) ctx.getBean("dbNodeService");
|
||||
authenticationService = (MutableAuthenticationService) ctx.getBean("AuthenticationService");
|
||||
|
Reference in New Issue
Block a user