commit 8188a4719a5fd8af09dc9fa10edb3b4796255319 Author: Jacob Van De Weert Date: Thu Feb 21 19:10:39 2019 +0000 remove maxScan from rogue queries (#11738) This is a deprecated option in mongo itself, and we haven't been setting it on queries since the java driver upgrade (which is what broke the tracing services where maxScan was being used as a query limit). Fortunately it wasn't in widespread use and easily removed -- there are a few places where I replaced it (the aforementioned tracing query) but otherwise I've just dropped it as unnecessary in most places. (sapling split of 836ce066cc2474b42c76e69da66c8604c80e53d3) src/jvm/io/fsq/rogue/adapter/MongoClientAdapter.scala | 1 - 1 file changed, 1 deletion(-) commit 74e334c572069e686093d4c804dbc36d0d7c984e Author: Jamie Alexander Date: Fri Feb 1 16:39:37 2019 -0500 Upgrade mongo driver (#10988) * started mongoDriver version update to 3.8 * removed explain func due to modifiers deprecation * fixing QueryTest * put tests back in * fixed QueryTests * fixing query strings * tests need to run serially * moed hint builder into mongo helpers * responded to PR comments * ran fixlint (sapling split of e9aec3472af1b89a453e281e5c7fc19145d92196) .../rogue/adapter/AsyncMongoClientAdapter.scala | 28 ++---- .../rogue/adapter/BlockingMongoClientAdapter.scala | 19 ++-- .../io/fsq/rogue/adapter/MongoClientAdapter.scala | 102 ++++++++++----------- 3 files changed, 63 insertions(+), 86 deletions(-) commit 4aa6650f859c8e3087dcbbf46171775a1a0deead Author: Ian Tabolt Date: Fri Jun 15 17:56:01 2018 -0400 Scalafmt EVERYTHING (#6987) * Run scalafmt on everything * Flip the switch to enable scalafmt (FSQ_ENABLE_SCALAFMT=True) * Add some // format: off and // format: on comments in particularly weird cases * Disable scalafmt on files that cause exceptions (sapling split of 61c9ef3975aa4f55f70e479d7908f42de0685d26) (sapling split of 8264ffd5eb789041b44688c92b468f426833730e) .../rogue/adapter/AsyncMongoClientAdapter.scala | 90 +++--- .../rogue/adapter/BlockingMongoClientAdapter.scala | 74 +++-- .../io/fsq/rogue/adapter/MongoClientAdapter.scala | 347 ++++++++++++--------- .../fsq/rogue/adapter/MongoCollectionFactory.scala | 1 - 4 files changed, 287 insertions(+), 225 deletions(-)