Strandedpirate

Results 14 comments of Strandedpirate

Confirmed. Don't use long stack traces with bluebird. We had to disable it in all of our production apps.

On windows `mkcert -install` must be executed under elevated Administrator privileges. Open the command prompt as Administrator and try again.

On windows `mkcert -install` must be executed under elevated Administrator privileges. Your code is running under standard user account that is not elevated.

Your secret must match between `cookie-parser` and `express-session`. Also you may want to use the `expires` option as shown below. ``` app.use(cookieParser('asdf33g4w4hghjkuil8saef345')); // cookie parser must use the same secret...

Set the content-type and accept headers and see what happens. ``` chai.request(server) .post(POST_ENDPOINT_PATH) .send(token) .set('Content-Type', 'application/json') .set('Accept', 'application/json') ... ``` In addition your `POST_ENDPOINT_PATH` should be relative not absolute. correct:...

I'm was having the same exact issue. This API is insanely inconsistent, and chocked full of gotchas. After 10 months of attempting to make things work, I decided to switch...

I'm having the exact same issue. `AddMutationConventions(true)` in `program.cs`, and then any attempt to use a projection on a mutation throws an exception. This is not ideal, because now I...

Thanks, the ToList was a typo. Updated.

This will get you TLS certificate setup without any hacks. My certs were created and signed by a root CA that I made/control, and is already in the windows certificate...

This plugin has been broken for 5 months. Can we get a fix soon?