We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I set the connection timeout using the following code. The timeout seems have not effect.
timeout
var request = URLRequest(url: url) request.timeoutInterval = 5
I looked at the library code and found this part. It seems the stream is not actually disconnected.
stream.connect(url: url, port: port, timeout: timeout, ssl: settings, completion: { [weak self] (error) in guard let s = self else {return} if error != nil { //do disconnect return } ...
The text was updated successfully, but these errors were encountered:
Great catch! This has been fixed in 3.0.4! Thanks!
3.0.4
Sorry, something went wrong.
No branches or pull requests
I set the connection timeout using the following code. The
timeout
seems have not effect.I looked at the library code and found this part. It seems the stream is not actually disconnected.
The text was updated successfully, but these errors were encountered: