]> git.proxmox.com Git - ceph.git/blobdiff - ceph/src/ceph-volume/ceph_volume/devices/lvm/create.py
update sources to 12.2.2
[ceph.git] / ceph / src / ceph-volume / ceph_volume / devices / lvm / create.py
index 8c747f342143cf34697f00a7d0724e57da5cecce..353b26ab4ed8c0afb07b911d3362e6ccb3c0e5dd 100644 (file)
@@ -50,4 +50,8 @@ class Create(object):
             print(sub_command_help)
             return
         args = parser.parse_args(self.argv)
+        # Default to bluestore here since defaulting it in add_argument may
+        # cause both to be True
+        if args.bluestore is None and args.filestore is None:
+            args.bluestore = True
         self.create(args)