NehanPathan commented on code in PR #1182: URL: https://github.com/apache/lucenenet/pull/1182#discussion_r2338440760
########## src/Lucene.Net.Replicator/ReplicationClient.cs: ########## @@ -261,6 +279,101 @@ private void DoUpdate() } } + /// <summary> + /// Performs the async update logic, mirrors DoUpdate but uses IAsyncReplicator. + /// </summary> + private async Task DoUpdateAsync(CancellationToken cancellationToken) + { + if (asyncReplicator is null) + throw new InvalidOperationException("AsyncReplicator not initialized."); + + SessionToken? session = null; Review Comment: @paulirwin @NightOwl888 can you pls suggest better way to adjust whole file after adding #nullable enable beacause once i add that and try to resolve fields it actually 2x or 3x my warnings after every build ie from 32 -> 84 -> 153 warnings -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: dev-unsubscr...@lucenenet.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org