Skip to content

Commit

Permalink
Set default block size in create_bdev CLI to 512 instead of 4K.
Browse files Browse the repository at this point in the history
Fixes ceph#224

Signed-off-by: Gil Bregman <[email protected]>
  • Loading branch information
gbregman committed Sep 18, 2023
1 parent e2e7bd3 commit 13f4b81
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion control/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ def connect(self, host, port, client_key, client_cert, server_cert):
"--block-size",
help="Block size",
type=int,
default=4096),
default=512),
])
def create_bdev(self, args):
"""Creates a bdev from an RBD image."""
Expand Down

0 comments on commit 13f4b81

Please sign in to comment.