Skip to content

Commit

Permalink
tools/write_stress.cc: Correct "1204" typos.
Browse files Browse the repository at this point in the history
Summary:
Should be 1024, obviously :)
Closes #2592

Differential Revision: D5435269

Pulled By: ajkr

fbshipit-source-id: c59338a3900798a4733f0b205e534f21215cf049
  • Loading branch information
lamby authored and facebook-github-bot committed Jul 17, 2017
1 parent cbaab30 commit b2dd192
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tools/write_stress.cc
Original file line number Diff line number Diff line change
Expand Up @@ -135,8 +135,8 @@ class WriteStress {
// compactions
options.create_if_missing = true;
options.write_buffer_size = 256 * 1024; // 256k
options.max_bytes_for_level_base = 1 * 1024 * 1204; // 1MB
options.target_file_size_base = 100 * 1204; // 100k
options.max_bytes_for_level_base = 1 * 1024 * 1024; // 1MB
options.target_file_size_base = 100 * 1024; // 100k
options.max_write_buffer_number = 16;
options.max_background_compactions = 16;
options.max_background_flushes = 16;
Expand Down

0 comments on commit b2dd192

Please sign in to comment.