File tree Expand file tree Collapse file tree
src/main/java/com/dtstack/logstash/assembly Expand file tree Collapse file tree Original file line number Diff line number Diff line change 77import org .slf4j .LoggerFactory ;
88import com .dtstack .logstash .filters .BaseFilter ;
99import com .dtstack .logstash .outputs .BaseOutput ;
10- //import com.google.common.collect.Lists;
11- //import com.google.common.collect.Maps;
1210
1311/**
1412 *
@@ -39,17 +37,14 @@ public FilterAndOutputThread(
3937 @ Override
4038 public void run () {
4139 // TODO Auto-generated method stub
42- while (true ) {
40+ A : while (true ) {
4341 Map <String , Object > event = null ;
4442 try {
45- // if(dealFailMsg){
46- // continue A;
47- // }
4843 if (!priorityFail ()){
4944 event = inputQueue .take ();
5045 if (this .filterProcessors != null ) {
5146 for (BaseFilter bf : filterProcessors ) {
52- if (event == null || event .size () == 0 )continue ;
47+ if (event == null || event .size () == 0 )continue A ;
5348 bf .process (event );
5449 }
5550 }
You can’t perform that action at this time.
0 commit comments