]> git-server-git.apps.pok.os.sepia.ceph.com Git - ceph.git/commitdiff
osd: make "missing incremental map" a debug log message 35386/head
authorNathan Cutler <ncutler@suse.com>
Sun, 24 May 2020 19:47:36 +0000 (21:47 +0200)
committerNathan Cutler <ncutler@suse.com>
Thu, 4 Jun 2020 12:43:13 +0000 (14:43 +0200)
47a3f63ef71522d6b9572e81674598dd3e19df9d introduced the following error
message

    build_incremental_map_msg missing incremental map 33087

The message causes users to be concerned, yet it does not require action
on their part.

Fixes: https://tracker.ceph.com/issues/45606
Signed-off-by: Nathan Cutler <ncutler@suse.com>
(cherry picked from commit 9dcf0a835aa234ed2cd89f1dde1e3aaba9cb1340)

src/osd/OSD.cc

index 8d9ab9caa56b54fd37bf73b449fadf718273ca5d..8cc4a5bb9f2ade3603d556621294d43a03a07866 100644 (file)
@@ -1527,7 +1527,7 @@ MOSDMap *OSDService::build_incremental_map_msg(epoch_t since, epoch_t to,
     if (get_inc_map_bl(e, bl)) {
       m->incremental_maps[e].claim(bl);
     } else {
-      derr << __func__ << " missing incremental map " << e << dendl;
+      dout(10) << __func__ << " missing incremental map " << e << dendl;
       if (!get_map_bl(e, bl)) {
        derr << __func__ << " also missing full map " << e << dendl;
        goto panic;