You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Mar 21, 2019. It is now read-only.
Hello. In my project, when I want to do a http request and set the timeout option to 3000 and after that time past the call didn't return a exception, it's like still waiting the response. This is the code:
So I search and found the source of http.request and added a line of code:
connection.setReadTimeout(options.timeout);
I clean and build the project with this modification and trying again my project where I do the http request with the timeout and this time it returns an exception like I expected.
So I think it should be added the change to the class org.nativescript.widgets.Async like this