[TEST] Fixed action names bw comp tests, action not found is expected for newly added exists actions

This commit is contained in:
javanna 2014-08-04 17:00:17 +02:00 committed by Luca Cavanna
parent 873a45eaba
commit 24a1a0f07f
1 changed files with 4 additions and 0 deletions

View File

@ -25,6 +25,7 @@ import org.elasticsearch.action.bench.AbortBenchmarkAction;
import org.elasticsearch.action.bench.BenchmarkAction;
import org.elasticsearch.action.bench.BenchmarkService;
import org.elasticsearch.action.bench.BenchmarkStatusAction;
import org.elasticsearch.action.exists.ExistsAction;
import org.elasticsearch.action.indexedscripts.delete.DeleteIndexedScriptAction;
import org.elasticsearch.action.indexedscripts.get.GetIndexedScriptAction;
import org.elasticsearch.action.indexedscripts.put.PutIndexedScriptAction;
@ -123,6 +124,9 @@ public class ActionNamesBackwardsCompatibilityTest extends ElasticsearchBackward
actionsVersions.put(BenchmarkStatusAction.NAME, Version.V_1_4_0);
actionsVersions.put(AbortBenchmarkAction.NAME, Version.V_1_4_0);
actionsVersions.put(ExistsAction.NAME, Version.V_1_4_0);
actionsVersions.put(ExistsAction.NAME + "[s]", Version.V_1_4_0);
actionsVersions.put(IndicesStore.ACTION_SHARD_EXISTS, Version.V_1_3_0);
actionsVersions.put(GetIndexedScriptAction.NAME, Version.V_1_3_0);