Christopher Watford

Results 30 comments of Christopher Watford

We use that approach in our Web API's via Swagger.Net. We generate a Swagger definition via convention+attributes and then use that to generate compatible clients. Likewise if we had a...

I've been using the branch in my test setup, and had to make one change for it to work with our performance enhancements: ```diff @@ -126,1 126,1 @@ Manatee.Json/Schema/Generation/SchemaGenerator.cs -...

I'd also enjoy a JsonSchemaFactory method to call GenerateFor using the default schema format (although not strictly required). My usage of JsonSchema in our app's event system would be as...

@gregsdennis just an example of how we're using JsonSchema in our application (i.e. part of a distributed events system).

It would probably be better to simply ignore slow consumer exceptions on the publish path. At some point you need to be alerted to the fact you're slow.

@thinkbeforecoding can you open an issue to track your question regarding the other method family.

In .NET you should avoid wrapping sync in async calls whenever possible. "Turtles all the way down" is best, so to speak.

Looking forward to reading about it! On Nov 15, 2015 9:05 PM, "Ates Goral" [email protected] wrote: > As a follow up, Allan actually responded very quickly with a lengthy >...

This is more of an expressjs issue than krakenjs (which builds on top of it), but an important thing to note with [`express.static`](https://expressjs.com/en/starter/static-files.html) is this: > Express looks up the...

Which version of NodeJS? I ran into this issue with Gulp v3 on Node v12 and downgraded to v10 to fix it.