Andrew Lees

Results 12 issues of Andrew Lees

Curl 7.58 had a [bug](https://github.com/curl/curl/issues/2303) where it would call back twice with chunked encoding. This then causes the Kitura-net parser to be unable to read the body and throw an...

Within the websocket protocol you are not supposed to send the reason code noReasonCodeSent. This is meant to be used internally to represent no code being sent. You then respond...

CouchDB has an API where you can request multiple documents are once: http://docs.couchdb.org/en/2.2.0/api/database/bulk-api.html#db-bulk-get We currently have support to Bulk insert or update documents but not to bulk retrieve them. This...

enhancement

Currently the CouchDBClient is created with a Username and password which is attached to every request using basic authentication. It is more performant and safe to use cookies as described...

enhancement

We have had to comment out some tests for Linux with Swift 5. They are failing due to a bug in foundation where URLSession is calling back twice. It has...

This pull request adds some sleeps into the CircuitBreaker tests to allow async tasks to complete before checking for the result

fixes issue #11. This pull request allows you to pattern match an ECError against a general error. This was added to SwiftJWT by the community in pr [45](https://github.com/IBM-Swift/Swift-JWT/pull/45) and is...

We use the same pattern as Swift-JWT for errors. This [pr](https://github.com/IBM-Swift/Swift-JWT/pull/45) adds pattern matching for the errors so they are easier to handle and it would be nice to implement...

Currently we have an seperate repo to demonstrate KituraKit called [iOSSampleKituraKit](https://github.com/IBM-Swift/iOSSampleKituraKit). It would be nice to move this so it is part of Kitura-Sample and it could connect to the...

We would like to run a version of Kitura-sample online so people can see it without having to clone the repo themselves. However, the current version of Kitura-Sample has a...

enhancement