Adrien David
Adrien David
`thread_id` is undefined in sendReview, instead use `id`
The current code can otherwise only pre-approve an inquiry
I am trying to connect to an Atlas M0 (Free Tier) Cluster with txmongo. Following the instructions here: https://github.com/twisted/txmongo/issues/203 I created the connection pool with: `db = yield ConnectionPool(url, ssl_context_factory=ssl.ClientContextFactory())`...
Is it possible to specify a collation on a `find` / `find_one` query: ( [Ref](https://docs.mongodb.com/manual/reference/method/cursor.collation/) & [PyMongo](http://api.mongodb.com/python/current/examples/collations.html) ) with txmongo ? That can be used along with a [Case Insensitive...