Declare _canPipelineCommits to be const.

This commit is contained in:
Xin Dong 2020-10-08 13:35:27 -07:00
parent e258dffc65
commit 6062520197
1 changed files with 1 additions and 1 deletions

View File

@ -186,7 +186,7 @@ struct StorageServerDisk {
private:
struct StorageServer* data;
IKeyValueStore* storage;
bool _canPipelineCommits;
const bool _canPipelineCommits;
ACTOR static Future<Key> readFirstKey( IKeyValueStore* storage, KeyRangeRef range ) {
Standalone<RangeResultRef> r = wait( storage->readRange( range, 1 ) );