From e16d6f6a65121dc244eb388d407f004f17ba3668 Mon Sep 17 00:00:00 2001 From: Florian Bernd Date: Tue, 18 Jul 2023 15:33:59 +0200 Subject: [PATCH] Fix typing of `BulkUpdateOperation.RetryOnConflict` --- .../Types/Core/Bulk/BulkUpdateOperation.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Elastic.Clients.Elasticsearch/Types/Core/Bulk/BulkUpdateOperation.cs b/src/Elastic.Clients.Elasticsearch/Types/Core/Bulk/BulkUpdateOperation.cs index 20cbc3b02bb..9820d4c55d9 100644 --- a/src/Elastic.Clients.Elasticsearch/Types/Core/Bulk/BulkUpdateOperation.cs +++ b/src/Elastic.Clients.Elasticsearch/Types/Core/Bulk/BulkUpdateOperation.cs @@ -19,7 +19,7 @@ protected internal BulkUpdateOperation() : base() { } private static byte _newline => (byte)'\n'; [JsonPropertyName("retry_on_conflict")] - public bool? RetryOnConflict { get; set; } + public int? RetryOnConflict { get; set; } protected override string Operation => "update";