Uploaded image for project: 'Java Driver'
  1. Java Driver
  2. JAVA-5183

toString() in ClusterSettings uses serverSelectionTimeoutMS to print the localThreshold value

    • Type: Icon: Bug Bug
    • Resolution: Fixed
    • Priority: Icon: Major - P3 Major - P3
    • 4.11.0
    • Affects Version/s: None
    • Component/s: None
    • Labels:
      None
    • Not Needed
    • Hide

      1. What would you like to communicate to the user about this feature?
      2. Would you like the user to see examples of the syntax and/or executable code and its output?
      3. Which versions of the driver/connector does this apply to?

      Show
      1. What would you like to communicate to the user about this feature? 2. Would you like the user to see examples of the syntax and/or executable code and its output? 3. Which versions of the driver/connector does this apply to?

      This line is the problem:

          @Override
          public String toString() {
              return "{"
                     + (hosts.isEmpty() ? "" : "hosts=" + hosts)
                     + (srvHost == null ? "" : ", srvHost=" + srvHost)
                     + (srvServiceName == null ? "" : ", srvServiceName=" + srvServiceName)
                     + (srvMaxHosts == null ? "" : ", srvMaxHosts=" + srvMaxHosts)
                     + ", mode=" + mode
                     + ", requiredClusterType=" + requiredClusterType
                     + ", requiredReplicaSetName='" + requiredReplicaSetName + '\''
                     + ", serverSelector='" + serverSelector + '\''
                     + ", clusterListeners='" + clusterListeners + '\''
                     + ", serverSelectionTimeout='" + serverSelectionTimeoutMS + " ms" + '\''
                     + ", localThreshold='" + serverSelectionTimeoutMS + " ms" + '\''
                     + '}';
          }
      

            Assignee:
            ross@mongodb.com Ross Lawley
            Reporter:
            dmitry.ryabtsev@mongodb.com Dmitry Ryabtsev
            Votes:
            0 Vote for this issue
            Watchers:
            2 Start watching this issue

              Created:
              Updated:
              Resolved: