We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 091d031 commit 5523a27Copy full SHA for 5523a27
src/plugins/index_pattern_management/public/components/create_index_pattern_wizard/lib/get_indices.ts
@@ -209,18 +209,6 @@ export async function getIndices({
209
});
210
requests.push(promiseResolve);
211
212
- if (isCCS) {
213
- // CCS supports ±1 major version. We won't be able to expect resolve endpoint to exist until v9
214
- const promiseSearch = getIndicesViaSearch({
215
- getIndexTags,
216
- pattern,
217
- searchClient,
218
- showAllIndices,
219
- dataSourceId,
220
- }).catch(() => []);
221
- requests.push(promiseSearch);
222
- }
223
-
224
const responses = await Promise.all(requests);
225
226
if (responses.length === 2) {
0 commit comments