@@ -58,7 +58,7 @@ public FileSystemRepositorySettings(string location)
58
58
public string SnapshotBytesPerSecondMaximum { get ; set ; }
59
59
}
60
60
61
- public class FileSystemRepositorySettingsDescriptor
61
+ public class FileSystemRepositorySettingsDescriptor
62
62
: DescriptorBase < FileSystemRepositorySettingsDescriptor , IFileSystemRepositorySettings > , IFileSystemRepositorySettings
63
63
{
64
64
string IFileSystemRepositorySettings . Location { get ; set ; }
@@ -87,8 +87,8 @@ public class FileSystemRepositorySettingsDescriptor
87
87
public FileSystemRepositorySettingsDescriptor ConcurrentStreams ( int concurrentStreams ) => Assign ( a => a . ConcurrentStreams = concurrentStreams ) ;
88
88
89
89
/// <summary>
90
- /// Big files can be broken down into chunks during snapshotting if needed.
91
- /// The chunk size can be specified in bytes or by using size value notation, i.e. 1g, 10m, 5k.
90
+ /// Big files can be broken down into chunks during snapshotting if needed.
91
+ /// The chunk size can be specified in bytes or by using size value notation, i.e. 1g, 10m, 5k.
92
92
/// Defaults to null (unlimited chunk size).
93
93
/// </summary>
94
94
/// <param name="chunkSize"></param>
@@ -102,14 +102,14 @@ public FileSystemRepositorySettingsDescriptor RestoreBytesPerSecondMaximum(strin
102
102
Assign ( a => a . RestoreBytesPerSecondMaximum = maximumBytesPerSecond ) ;
103
103
104
104
/// <summary>
105
- /// Throttles per node snapshot rate. Defaults to 20mb per second.
105
+ /// Throttles per node snapshot rate. Defaults to 20mb per second.
106
106
/// </summary>
107
107
/// <param name="maximumBytesPerSecond"></param>
108
108
public FileSystemRepositorySettingsDescriptor SnapshotBytesPerSecondMaximum ( string maximumBytesPerSecond ) =>
109
109
Assign ( a => a . SnapshotBytesPerSecondMaximum = maximumBytesPerSecond ) ;
110
110
}
111
111
112
- public class FileSystemRepositoryDescriptor
112
+ public class FileSystemRepositoryDescriptor
113
113
: DescriptorBase < FileSystemRepositoryDescriptor , IFileSystemRepository > , IFileSystemRepository
114
114
{
115
115
IFileSystemRepositorySettings IRepository < IFileSystemRepositorySettings > . Settings { get ; set ; }
0 commit comments