Kyle Fuller
Kyle Fuller
> I'm personally not interested in implementing timeouts because I've seen cases where remote servers (e.g. services) have taken up to 30 seconds to respond previously and imo waiting that...
I wonder if an alternative might suffice, where we have an explicit labeled response messages which indicates labeled replies are unsupported for this request. Instead of indicating the implementation is...
5352d1ff has resolved this issue.
@emersonmalca, you need to remove keyboard control when your view goes away. This isn't an issue with DAKeyboardControl. https://github.com/danielamitay/DAKeyboardControl#remove-the-nsnotification-observer-at-the-end-of-a-vcs-life-convenience-method ``` diff diff --git a/DAKeyboardControlExample/DAKeyboardControlExample/ViewController.m b/DAKeyboardControlExample/DAKeyboardControlExample/ViewController.m index 3042579..8078d6a 100644 --- a/DAKeyboardControlExample/DAKeyboardControlExample/ViewController.m...
There are cases where a view can become deallocated and the `viewWillDisappear:` method will never be called. It's best to do it in `dealloc`
5352d1ff2 should have resolved the previous comment
To add more context, in this particular case these libraries depend on an exact version of a peer dependency, and thus they must be updated together for compatibility. Here's an...
https://twitter.com/rob_rix/status/623697875340521472
@JamesMessinger The issue is that in swagger-parser@4 the error message: ```js throw ono('Error resolving $ref pointer "%s". \n"%s" not found.', path, withoutHash); ``` Contains the incorrect path for "root" (`#/`)...
To note, we're also using the options to disable external references: ```js const swaggerOptions = { dereference: { circular: 'ignore', }, resolve: { external: false, }, }; ```