09-17-2009 06:57 AM
linkvalidation.pollInterval=5000
linkvalidation.retryInterval=120000
linkvalidation.disableOnFail=false
13:55:00,211 ERROR [alfresco.linkvalidation.LinkValidationAction] Link Validation Error:
org.alfresco.error.AlfrescoRuntimeException: 08170004 Link validation not performed - currently disabled
at org.alfresco.linkvalidation.LinkValidationAction.executeImpl(LinkValidationAction.java:173)
at org.alfresco.repo.action.executer.ActionExecuterAbstractBase.execute(ActionExecuterAbstractBase.java:127)
at org.alfresco.repo.action.ActionServiceImpl.directActionExecution(ActionServiceImpl.java:711)
at org.alfresco.repo.action.ActionServiceImpl.executeActionImpl(ActionServiceImpl.java:648)
at org.alfresco.repo.action.AsynchronousActionExecutionQueueImpl$ActionExecutionWrapper$1$1.execute(AsynchronousActionExecutionQueueImpl.java:369)
at org.alfresco.repo.transaction.RetryingTransactionHelper.doInTransaction(RetryingTransactionHelper.java:326)
at org.alfresco.repo.transaction.RetryingTransactionHelper.doInTransaction(RetryingTransactionHelper.java:233)
at org.alfresco.repo.action.AsynchronousActionExecutionQueueImpl$ActionExecutionWrapper$1.doWork(AsynchronousActionExecutionQueueImpl.java:378)
at org.alfresco.repo.security.authentication.AuthenticationUtil.runAs(AuthenticationUtil.java:489)
at org.alfresco.repo.action.AsynchronousActionExecutionQueueImpl$ActionExecutionWrapper.run(AsynchronousActionExecutionQueueImpl.java:381)
at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExecutor.java:886)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:908)
at java.lang.Thread.run(Thread.java:619)
09-17-2009 08:44 AM
09-18-2009 05:26 AM
If you really do want to get it to work there is a property on the link validation service that you need to turn on. Otherwise you get behaviour you are seeing.
09-18-2009 05:34 AM
09-23-2009 06:30 AM
linkValidationDisabled
<property name="linkValidationDisabled">
<value>false</value>
</property>
public boolean isLinkValidationDisabled()
{
// TODO merge here with 2.2 JMX flag
//Boolean disabled = (Boolean)sysAdminCache.get(KEY_SYSADMIN_LINKVALIDATION_DISABLED);
//return ((! isVirtServerAvailable()) || (disabled == null ? false : disabled.booleanValue());
return (poll_interval_ <= 0 || (! isVirtServerAvailable()));
}
Tags
Find what you came for
We want to make your experience in Hyland Connect as valuable as possible, so we put together some helpful links.