Skip to content

Commit cacd1be

Browse files
Fix typing of BulkUpdateOperation.RetryOnConflict (#7841) (#7857)
Co-authored-by: Florian Bernd <[email protected]>
1 parent 073a5eb commit cacd1be

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)