Vesa Poikajärvi

Results 20 comments of Vesa Poikajärvi

Is there a workaround available meanwhile? Would need to run `initializeUnorderedBulkOp`, add operations to the returned bulk, and then `execute` it.

Here's a simple `upsert` example just in case someone's interested (since it didn't go as I expected from the shell examples): ``` clojure (let [col (.getCollection db "collection_name") bulk (.initializeUnorderedBulkOperation...

I have faced a problem on CentOS where the owner cannot use `pgr_getTableName`. It works as user `postgres` of course. I do not have the same problem on my Ubuntu....

At least can select from both. `schemata` is empty though when selecting as the user.

@cvvergara Thanks. For reference, I created the user and DB as user `postgres` using the provided commands: ``` createuser -P gisuser createdb -O gisuser gis ``` Then, still as user...

@dkastl No, not anymore. Ubuntu was upgraded to 9.4.1.

That comes from not defining `adminDn` in the options when executing `new LdapAuth` (see the [source](https://github.com/trentm/node-ldapauth/blob/8bc35149ce56bb1b4f745a60f8693e72bec247df/lib/ldapauth.js#L56))

True that - I've never given it a thought since this was just one feature in the original library. I'd guess the point has been to reduce load on the...

You are apparently trying to use [custom callbacks](http://www.passportjs.org/docs/authenticate/#custom-callback), see that on how the middleware needs to be called then.