Skip to content

Commit 4a63f03

Browse files
authored
Fix typing of BulkUpdateOperation.RetryOnConflict (#7841)
1 parent d05021f commit 4a63f03

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Elastic.Clients.Elasticsearch/Types/Core/Bulk/BulkUpdateOperation.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ protected internal BulkUpdateOperation() : base() { }
1919
private static byte _newline => (byte)'\n';
2020

2121
[JsonPropertyName("retry_on_conflict")]
22-
public bool? RetryOnConflict { get; set; }
22+
public int? RetryOnConflict { get; set; }
2323

2424
protected override string Operation => "update";
2525

0 commit comments

Comments
 (0)