修正isAccess提示文案

This commit is contained in:
bryan.zhang
2018-01-17 20:05:16 +08:00
parent ed3be7805e
commit 0146658c7c

View File

@@ -125,7 +125,7 @@ public class FlowExecutor {
break;
}
}else {
LOG.info("[{}]:component[{}] do not have access",slot.getRequestId(),component.getClass().getSimpleName());
LOG.info("[{}]:skip component[{}] execution",slot.getRequestId(),component.getClass().getSimpleName());
}
}catch(Throwable t){
if(component.isContinueOnError()){
@@ -179,7 +179,7 @@ public class FlowExecutor {
if(cmp.isAccess()) {
cmp.execute();
}else {
LOG.info("[{}]:component[{}] do not have access",requestId,cmp.getClass().getSimpleName());
LOG.info("[{}]:skip component[{}] execution",requestId,cmp.getClass().getSimpleName());
}
}catch(Exception e){
LOG.error("component [{}] execute cause error",node.getClazz(),e);