Robert Johnson
Robert Johnson
I'd be interested in having a look at this. Did you have anything in mind for the API?
The newer versions of the driver have you build up a sequence of `WriteModel` objects, like the following example taken from http://stackoverflow.com/questions/31470702/ ``` MongoCollection collection = db.getCollection("sample"); List updates =...
RE futures vs callbacks - are you sure you mean futures rather than promises? Either way, I think that at a minimum callbacks ought to be supported since they give...
Apologies, I thought you were talking about about a `clojure.core` `future`.
OK, being more specific, I was talking about the _function_ `clojure.core/future` as opposed to `clojure.core/promise`. My concern was simply that the former potentially kicks off another thread, whereas it's clear...
I'm also getting authentication errors. I'm trying to authenticate with clojurians.slack.com: My register command looks like ```elisp (slack-register-team :name "clojurians" :default t :token "xoxc-0000000000-0000000000000-0000000000000-0000000000000000000000000000000000000000000000000000000000000000" :cookie "xoxd-WoMClAX%2BA" :subscribed-channels '(slackbot)) ``` and...
Thanks @isamert for that log level advice! Using that, I've done a bit of digging, and the TL;DR is that I think it's related to cookies, but haven't had the...
With a bit more digging, I think the issue is related to curl: On my mac (on which I am experiencing the issue), the following command fails: ``` curl -v...
Hmmm, not so sure it's a curl problem after all; when running the command ``` curl -v --compressed --location --request GET \ --header "Authorization: Bearer xoxc-..." \ --header "Cookie: foo=bar"...
@ieure I can't see any significant differences in the output; this tallies with the fact that it seems to be the machine I'm running on that's important, not the curl...