Skip to content

Commit

Permalink
scylla_io_setup: correct units in low space warning
Browse files Browse the repository at this point in the history
GiB -> GB

Refs #2676

Signed-off-by: Benny Halevy <bhalevy@scylladb.com>
Message-Id: <20181210092503.10344-1-bhalevy@scylladb.com>
  • Loading branch information
bhalevy authored and avikivity committed Dec 10, 2018
1 parent 475b151 commit ef53ddf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dist/common/scripts/scylla_io_setup
Expand Up @@ -100,7 +100,7 @@ if __name__ == "__main__":
avail = st.f_bavail * st.f_frsize
rec = 10000000000
if avail < rec:
logging.error("Filesystem at %s has only %d bytes free that is less than recommended 10 GiB. Please free up space and run scylla_io_setup again.\n", data_dir, avail)
logging.error("Filesystem at %s has only %d bytes available; that is less than the recommended 10 GB. Please free up space and run scylla_io_setup again.\n", data_dir, avail)
sys.exit(1)
blocktune.tune_fs(data_dir, '2')
iotune_args += [ "--evaluation-directory", data_dir ]
Expand Down

0 comments on commit ef53ddf

Please sign in to comment.