Browse Source

Optimize the slot order in DefaultSlotChainBuilder (#1056)

master
windWheel Eric Zhao 5 years ago
parent
commit
4e55a6a749
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      sentinel-core/src/main/java/com/alibaba/csp/sentinel/slots/DefaultSlotChainBuilder.java

+ 1
- 1
sentinel-core/src/main/java/com/alibaba/csp/sentinel/slots/DefaultSlotChainBuilder.java View File

@@ -42,8 +42,8 @@ public class DefaultSlotChainBuilder 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 SystemSlot());
chain.addLast(new AuthoritySlot()); chain.addLast(new AuthoritySlot());
chain.addLast(new SystemSlot());
chain.addLast(new FlowSlot()); chain.addLast(new FlowSlot());
chain.addLast(new DegradeSlot()); chain.addLast(new DegradeSlot());




Loading…
Cancel
Save