Mark Smith

Results 20 comments of Mark Smith

Thanks for the background info. I think I’m starting to understand how the pieces are situated now. The ‘ejection’ capability was one of the reasons I started using serverless-http initially....

Thanks for the reply. Are you referring to the following section of the docs? ``` // set all output to go via console.info // overrides all per-namespace log settings debug.log...

I’m not super concerned about the colors, it’s really a nice to have. What’s more important when I have DEBUG set, is that the console.log and debug output get to...

I got this working using this code: ``` var http = require('http'); var express = require('express'); var cache = require('express-redis-cache'); var app = express(); var cache = cache({ prefix: 'test-prefix'...

Right, that's better. Might be an idea to have the app start in whatever the newman equivalent of a before hook is. All the tests now pass apart from: Auth...

I’m having the same issue. Is there a way to set the js-yaml CORE_SCHEMA?

I opened a [related issue on the js-yaml repo](https://github.com/nodeca/js-yaml/issues/706) , posting here in case it’s useful to others that run into something similar.

I figured this out, adding single quotes around the value ensures it gets parsed into a string rather than into a date object.

@edwardhorsford Thanks for the tips and code samples, and especially how to structure the data, using the full date including the slashes as the key hadn't occurred to me, which...