liubao68 commented on a change in pull request #2584:
URL: 
https://github.com/apache/servicecomb-java-chassis/pull/2584#discussion_r714506095



##########
File path: 
handlers/handler-governance/src/main/java/org/apache/servicecomb/handler/governance/FaultExecutor.java
##########
@@ -0,0 +1,71 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License.  You may obtain a copy of the License at
+ *
+ *     http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+package org.apache.servicecomb.handler.governance;
+
+import java.util.List;
+
+import org.apache.servicecomb.core.Invocation;
+import org.apache.servicecomb.governance.marker.GovernanceRequest;
+import org.apache.servicecomb.governance.policy.FaultInjectionPolicy;
+import org.apache.servicecomb.injection.AbortFault;
+import org.apache.servicecomb.injection.DelayFault;
+import org.apache.servicecomb.injection.Fault;
+import org.apache.servicecomb.injection.FaultParam;
+import org.apache.servicecomb.swagger.invocation.AsyncResponse;
+import org.apache.servicecomb.swagger.invocation.Response;
+import org.springframework.beans.factory.annotation.Autowired;
+
+
+/**
+ * Implements the fault feature execution one after other.
+ */
+public class FaultExecutor {
+  private List<Fault> faultInjectList;
+
+  private int handlerIndex = 0;
+
+  private Invocation invocation;
+
+  private FaultParam param;
+
+  private FaultInjectionPolicy policy;
+
+  private Fault fault;
+
+  public FaultExecutor(List<Fault> faultInjectList, Invocation invocation, 
FaultParam param, FaultInjectionPolicy policy) {
+    this.faultInjectList = faultInjectList;
+    this.invocation = invocation;
+    this.param = param;
+    this.policy =policy;
+  }
+
+  public void execute(AsyncResponse asyncResponse) {
+    if(policy.getType().equals("delay")) {
+      fault = new DelayFault();
+    } else {
+      fault = new AbortFault();
+    }

Review comment:
       initialize fault type when configuration changed. 




-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


Reply via email to