Jason Walton

Results 60 comments of Jason Walton

I ran into this problem trying to connect from phpvirtualbox to vboxweb-service running on the docker host (since my vbox user and password were not the defaults.) Here's my (slightly...

See also: https://github.com/petkaantonov/bluebird/blob/808fdf8fce0cf4dbb1b95129607777a0cd53df36/docs/docs/warning-explanations.md#warning-a-promise-was-created-in-a-handler-but-was-not-returned-from-it I was just bitten by this, too. Basically, in BlueBird you're never allowed to have a Promise chain that ends in `undefined`. A little annoying if you...

Based on reading the source, I would agree with you... Except that in this example the `then` block clearly creates no promises, but when I removed the `return null` at...

Oh... I bet I know why. I bet the person who raised the issue was creating a Bluebird promise inside the `connect` handler, which would be run synchronously from inside...

I suspect this is related to https://github.com/jaredpalmer/formik/issues/3275.

I ran into the same problem, but in my case I'm using a Synology which doesn't support ECC at all. :( Thanks for the pro-tip though @devinlane!

@RobDolinMS Also, you can't have multiple `cookie` headers in the request. As per [RFC 6265 S5.4](https://tools.ietf.org/html/rfc6265#section-5.4): > When the user agent generates an HTTP request, the user agent MUST NOT...

What does explode even mean for a cookie, though? If I have a list in a cookie "foo", does this mean I have a Cookie header with multiple copies of...