MongoIndexManager always read indexes from primary

XMLWordPrintableJSON

    • Type: Task
    • Resolution: Works as Designed
    • Priority: Minor - P4
    • None
    • Affects Version/s: None
    • Component/s: Read Operations
    • None
    • None
    • None
    • None
    • None
    • None
    • None

      MongoIndexManager methods List and ListAsync don't use client read preference settings, always read list of indexes from primary:

      Unable to find source-code formatter for language: csharp. Available languages are: actionscript, ada, applescript, bash, c, c#, c++, cpp, css, erlang, go, groovy, haskell, html, java, javascript, js, json, lua, none, nyan, objc, perl, php, python, r, rainbow, ruby, scala, sh, sql, swift, visualbasic, xml, yaml
      public override IAsyncCursor<BsonDocument> List(IClientSessionHandle session, CancellationToken cancellationToken = default(CancellationToken))
      {
          Ensure.IsNotNull(session, nameof(session));
          var operation = CreateListIndexesOperation();
          return _collection.ExecuteReadOperation(session, operation, ReadPreference.Primary, cancellationToken);
      }
      

              Assignee:
              Robert Stam
              Reporter:
              Artem Zinenko
              Votes:
              0 Vote for this issue
              Watchers:
              2 Start watching this issue

                Created:
                Updated:
                Resolved: