Skip to content

Commit

Permalink
Minor comment updates
Browse files Browse the repository at this point in the history
  • Loading branch information
archang19 committed Dec 27, 2024
1 parent 9d3da28 commit 147b60f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion include/rocksdb/utilities/backup_engine.h
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ struct BackupEngineOptions {
// Default: true
bool backup_log_files;

// Size of the buffer used for reading files.
// Size of the buffer in bytes used for reading files.
// Enables optimally configuring the IO size based on the storage backend.
// If specified, takes precendence over the rate limiter burst size (if
// specified) as well as kDefaultCopyFileBufferSize.
Expand Down
2 changes: 1 addition & 1 deletion utilities/backup/backup_engine_test.cc
Original file line number Diff line number Diff line change
Expand Up @@ -4516,7 +4516,7 @@ TEST_F(BackupEngineTest, IOBufferSize) {
ASSERT_TRUE(io_buffer_size_calculated);
CloseDBAndBackupEngine();

// Override the default buffer size with 64 MB through BackupEngineOptions
// Override the default buffer size to 64 MB through BackupEngineOptions
expected_buffer_size = 64 * 1024 * 1024;
engine_options_->io_buffer_size = expected_buffer_size;
io_buffer_size_calculated = false;
Expand Down

0 comments on commit 147b60f

Please sign in to comment.