We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 9223523 + 2c70de2 commit a689ebeCopy full SHA for a689ebe
src/python-common/ceph/deployment/translate.py
@@ -121,9 +121,15 @@ def run(self):
121
if self.spec.block_wal_size:
122
cmd += " --block-wal-size {}".format(self.spec.block_wal_size)
123
124
+ if isinstance(self.spec.wal_slots, int) and self.spec.wal_slots > 1:
125
+ cmd += " --block-wal-slots {}".format(self.spec.wal_slots)
126
+
127
if self.spec.block_db_size:
128
cmd += " --block-db-size {}".format(self.spec.block_db_size)
129
130
+ if isinstance(self.spec.db_slots, int) and self.spec.db_slots > 1:
131
+ cmd += " --block-db-slots {}".format(self.spec.db_slots)
132
133
if d != self.NO_CRUSH:
134
cmd += " --crush-device-class {}".format(d)
135
0 commit comments