mirror of https://github.com/apache/lucene.git
SOLR-10996: Remove unused WAITING stage
This commit is contained in:
parent
9c8e829f58
commit
29db9819eb
|
@ -39,7 +39,6 @@ public class AutoScaling {
|
|||
}
|
||||
|
||||
public enum EventProcessorStage {
|
||||
WAITING,
|
||||
STARTED,
|
||||
ABORTED,
|
||||
SUCCEEDED,
|
||||
|
|
|
@ -98,7 +98,7 @@ public class HttpTriggerListenerTest extends SolrCloudTestCase {
|
|||
"{" +
|
||||
"'name' : 'foo'," +
|
||||
"'trigger' : 'node_added_trigger'," +
|
||||
"'stage' : ['WAITING', 'STARTED','ABORTED','SUCCEEDED', 'FAILED']," +
|
||||
"'stage' : ['STARTED','ABORTED','SUCCEEDED', 'FAILED']," +
|
||||
"'beforeAction' : 'test'," +
|
||||
"'afterAction' : ['test']," +
|
||||
"'class' : '" + HttpTriggerListener.class.getName() + "'," +
|
||||
|
|
|
@ -1016,7 +1016,7 @@ public class TriggerIntegrationTest extends SolrCloudTestCase {
|
|||
"{" +
|
||||
"'name' : 'foo'," +
|
||||
"'trigger' : 'node_added_trigger'," +
|
||||
"'stage' : ['WAITING', 'STARTED','ABORTED','SUCCEEDED', 'FAILED']," +
|
||||
"'stage' : ['STARTED','ABORTED','SUCCEEDED', 'FAILED']," +
|
||||
"'beforeAction' : 'test'," +
|
||||
"'afterAction' : ['test', 'test1']," +
|
||||
"'class' : '" + TestTriggerListener.class.getName() + "'" +
|
||||
|
@ -1031,7 +1031,7 @@ public class TriggerIntegrationTest extends SolrCloudTestCase {
|
|||
"{" +
|
||||
"'name' : 'bar'," +
|
||||
"'trigger' : 'node_added_trigger'," +
|
||||
"'stage' : ['WAITING','FAILED','SUCCEEDED']," +
|
||||
"'stage' : ['FAILED','SUCCEEDED']," +
|
||||
"'beforeAction' : ['test', 'test1']," +
|
||||
"'afterAction' : 'test'," +
|
||||
"'class' : '" + TestTriggerListener.class.getName() + "'" +
|
||||
|
|
Loading…
Reference in New Issue