SOLR-10996: Remove unused WAITING stage

This commit is contained in:
Shalin Shekhar Mangar 2017-07-13 12:08:03 +05:30
parent 9c8e829f58
commit 29db9819eb
3 changed files with 3 additions and 4 deletions

View File

@ -39,7 +39,6 @@ public class AutoScaling {
}
public enum EventProcessorStage {
WAITING,
STARTED,
ABORTED,
SUCCEEDED,

View File

@ -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() + "'," +

View File

@ -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() + "'" +