in edge-service/src/main/java/org/apache/servicecomb/fence/edge/InternalAccessHandler.java [28:35]
public void handle(Invocation invocation, AsyncResponse asyncReponse) throws Exception {
if (invocation.getOperationMeta().getSwaggerOperation().getTags() != null
&& invocation.getOperationMeta().getSwaggerOperation().getTags().contains("INTERNAL")) {
asyncReponse.consumerFail(new InvocationException(403, "", "not allowed"));
return;
}
invocation.next(asyncReponse);
}