File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
src/Nest/Document/Multiple/Reindex Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -49,7 +49,7 @@ private void Reindex(IObserver<IReindexResponse<T>> observer)
4949 var toIndex = this . _reindexRequest . To . Resolve ( this . _connectionSettings ) ;
5050 toIndex . ThrowIfNullOrEmpty ( nameof ( toIndex ) ) ;
5151
52- if ( ! this . _reindexRequest . OmitCreateIndex )
52+ if ( ! this . _reindexRequest . OmitIndexCreation )
5353 this . CreateIndex ( fromIndex , toIndex ) ;
5454
5555 var scroll = this . _reindexRequest . Scroll ?? TimeSpan . FromMinutes ( 2 ) ;
Original file line number Diff line number Diff line change @@ -39,7 +39,7 @@ public interface IReindexRequest
3939 public class ReindexRequest : IReindexRequest
4040 {
4141 /// <inheritdoc/>
42- public bool OmitCreateIndex { get ; set ; }
42+ public bool OmitIndexCreation { get ; set ; }
4343 /// <inheritdoc/>
4444 public IndexName To { get ; set ; }
4545 /// <inheritdoc/>
You can’t perform that action at this time.
0 commit comments