Explorar el Código

Adjust the order of slots in HotParamSlotChainBuilder (#1246)

master
echooymxq Eric Zhao hace 5 años
padre
commit
b136848873
Se han modificado 1 ficheros con 2 adiciones y 2 borrados
  1. +2
    -2
      sentinel-extension/sentinel-parameter-flow-control/src/main/java/com/alibaba/csp/sentinel/slots/HotParamSlotChainBuilder.java

+ 2
- 2
sentinel-extension/sentinel-parameter-flow-control/src/main/java/com/alibaba/csp/sentinel/slots/HotParamSlotChainBuilder.java Ver fichero

@@ -41,9 +41,9 @@ public class HotParamSlotChainBuilder implements SlotChainBuilder {
chain.addLast(new ClusterBuilderSlot()); chain.addLast(new ClusterBuilderSlot());
chain.addLast(new LogSlot()); chain.addLast(new LogSlot());
chain.addLast(new StatisticSlot()); chain.addLast(new StatisticSlot());
chain.addLast(new ParamFlowSlot());
chain.addLast(new SystemSlot());
chain.addLast(new AuthoritySlot()); chain.addLast(new AuthoritySlot());
chain.addLast(new SystemSlot());
chain.addLast(new ParamFlowSlot());
chain.addLast(new FlowSlot()); chain.addLast(new FlowSlot());
chain.addLast(new DegradeSlot()); chain.addLast(new DegradeSlot());




Cargando…
Cancelar
Guardar