Uploaded image for project: 'Core Server'
  1. Core Server
  2. SERVER-103044

Fix usage of test-only code from bgsync.cpp

    • Type: Icon: Task Task
    • Resolution: Unresolved
    • Priority: Icon: Major - P3 Major - P3
    • None
    • Affects Version/s: None
    • Component/s: None
    • Replication
    • Repl 2025-04-14
    • None
    • None
    • None
    • None
    • None
    • None
    • None

      link

          const auto logLevel = TestingProctor::instance().isEnabled() ? 0 : 1;
          LOGV2_DEBUG(21092,
                      logLevel,
                      "Scheduling fetcher to read remote oplog",
                      "syncSource"_attr = source,
                      "lastOpTimeFetched"_attr = oplogFetcher->getLastOpTimeFetched_forTest());
      

      This seems like it is trying to only call that function when running in a test, but it actually just raises the loglevel so that it will run in production for anyone who turns on verbose logging. If we want it to run at log level 1, it shouldn't call test-only functions. On the other hand, if we want it to only run in testing, we should use a normal if rather than relying on the shouldLog check in LOGV2_DEBUG.

            Assignee:
            solomon.lifshits@mongodb.com Solomon Lifshits
            Reporter:
            mathias@mongodb.com Mathias Stearn
            Votes:
            0 Vote for this issue
            Watchers:
            3 Start watching this issue

              Created:
              Updated:
              None
              None
              None
              None