Hari Sekhon

Results 187 comments of Hari Sekhon

That's odd I have continuous integration running on this and testing this plugin against a live MongoDB instance and I can see it built yesterday with version 1.0.2 and the...

That's later on, see line 2134 that was a run against a MongoDB which succeeded: ``` OK: document written in 0.1864 secs, read in 0.0053 secs, deleted in 0.0288 secs...

Ah I think I know why this may be, the CI is using unauthenticated Mongo and your issue is only occuring when calling authenticate.

@IdahoPL I've just updated this check and the underlying libraries for the API changes introduced in the 1.x Mongo driver. I've also added functional tests for both authenticated and unauthenticated...

If you look at `tests/test_mongodb.sh` you can see how the authentication test is done... I'm basically creating a user like so: ``` db.createUser({"user":"$MONGODB_USERNAME", "pwd":"$MONGODB_PASSWORD", "roles":[{role:"root", db:"admin"}]}) ``` which you can...

I had considered this a few years ago for not just this but other cluster plugins as well. It seems simpler and safer to abstract this cluster connectivity functionality, so...

@sharkyzz good question - find_active_server.py was designed to be fast (hence multi-threaded) and if you look at all the use cases of the subclassed adjacent find_active_*.py programs (including `find_active_elasticsearch.py`) it...

@hansbogert valid points. There is already a `find_active_elasticsearch.py` and HAProxy `elasticsearch.cfg` supplied which generalizes this use case, both are super simple to use within a few minutes. I had intended...

Thanks for raising this, I'll try to look in to it this weekend.