]> git.apps.os.sepia.ceph.com Git - ceph.git/commitdiff
common/blkdev: Remove trailing single quote 40421/head
authorBrad Hubbard <bhubbard@redhat.com>
Fri, 26 Mar 2021 04:58:04 +0000 (14:58 +1000)
committerBrad Hubbard <bhubbard@redhat.com>
Fri, 26 Mar 2021 04:58:04 +0000 (14:58 +1000)
Example output:

e1 collect_metadata :  no unique device id for : fallback method has no
model nor serial'

Signed-off-by: Brad Hubbard <bhubbard@redhat.com>
src/common/blkdev.cc

index b32fbd4cfaf5413f9e4d7ff37f6dc49b9c5792d9..3fbffe65ae7115db81e0285e68be346fee6109b8 100644 (file)
@@ -533,7 +533,7 @@ std::string get_device_id(const std::string& devname,
   }
   if (err) {
     if (model.empty() && serial.empty()) {
-      *err = std::string("fallback method has no model nor serial'");
+      *err = std::string("fallback method has no model nor serial");
       return {};
     } else if (model.empty()) {
       *err = std::string("fallback method has serial '") + serial