File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
src/Nest/Modules/SnapshotAndRestore/Repositories Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -229,13 +229,13 @@ public S3RepositorySettingsDescriptor() { }
229
229
public S3RepositorySettingsDescriptor SecretKey ( string secretKey ) => Assign ( a => a . SecretKey = secretKey ) ;
230
230
231
231
/// <inheritdoc cref="IS3RepositorySettings.ConcurrentStreams"/>
232
- public S3RepositorySettingsDescriptor ConcurrentStreams ( int ? concurrentStreams ) => Assign ( a => a . ConcurrentStreams = concurrentStreams ) ;
232
+ public S3RepositorySettingsDescriptor ConcurrentStreams ( int concurrentStreams ) => Assign ( a => a . ConcurrentStreams = concurrentStreams ) ;
233
233
234
234
/// <inheritdoc cref="IS3RepositorySettings.ChunkSize"/>
235
235
public S3RepositorySettingsDescriptor ChunkSize ( string chunkSize ) => Assign ( a => a . ChunkSize = chunkSize ) ;
236
236
237
237
/// <inheritdoc cref="IS3RepositorySettings.Compress"/>
238
- public S3RepositorySettingsDescriptor Compress ( bool ? compress = true ) => Assign ( a => a . Compress = compress ) ;
238
+ public S3RepositorySettingsDescriptor Compress ( bool compress = true ) => Assign ( a => a . Compress = compress ) ;
239
239
240
240
/// <inheritdoc cref="IS3RepositorySettings.ServerSideEncryption"/>
241
241
public S3RepositorySettingsDescriptor ServerSideEncryption ( bool ? serverSideEncryption = true ) =>
You can’t perform that action at this time.
0 commit comments