From eb9722d51dd896d7f55e5693832bd8bab56cb7d2 Mon Sep 17 00:00:00 2001 From: Laura Trotta Date: Thu, 21 Aug 2025 15:21:38 +0200 Subject: [PATCH] shard failure update --- specification/_types/Errors.ts | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/specification/_types/Errors.ts b/specification/_types/Errors.ts index 6275b4ae27..58b9e8d04c 100644 --- a/specification/_types/Errors.ts +++ b/specification/_types/Errors.ts @@ -50,11 +50,15 @@ export class ErrorCause } export class ShardFailure { + /** @aliases _index */ index?: IndexName + /** @aliases _node */ node?: string reason: ErrorCause - shard: integer + /** @aliases _shard */ + shard?: integer status?: string + primary?: boolean } export class BulkIndexByScrollFailure {