Skip to content

Commit

Permalink
ceph: Stripe unit and count were not being read correctly
Browse files Browse the repository at this point in the history
Fixes #618: rados stripe unit and stripe count settings are
            not being read correctly
  • Loading branch information
matt01 authored and Marco van Wieringen committed Feb 11, 2016
1 parent 01c224c commit 48d5b78
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/stored/backends/rados_device.c
Expand Up @@ -63,8 +63,8 @@ static device_option device_options[] = {
#endif
#ifdef HAVE_RADOS_STRIPER
{ "striped", argument_striped, 7 },
{ "stripe_unit=", argument_stripe_unit, 11 },
{ "stripe_count=", argument_stripe_count, 12 },
{ "stripe_unit=", argument_stripe_unit, 12 },
{ "stripe_count=", argument_stripe_count, 13 },
#endif
{ NULL, argument_none }
};
Expand Down

0 comments on commit 48d5b78

Please sign in to comment.