-
Notifications
You must be signed in to change notification settings - Fork 51
allow to set socket timeout #116
New issue
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
Conversation
the module length grew above 1k lines
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
A couple of suggestions, thanks for the submission!
Thanks! Looks like that description should get broken up into a couple lines to make the linter happy, but looks ready to go after that! |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Awesome, thanks!
Updating https://github.com/adafruit/Adafruit_CircuitPython_VCNL4040 to 1.2.12 from 1.2.11: > Merge pull request adafruit/Adafruit_CircuitPython_VCNL4040#15 from sokratisvas/add-type-annotations > Fix version strings in workflow files > Update version string Updating https://github.com/adafruit/Adafruit_CircuitPython_HID to 5.3.0 from 5.2.5: > Merge pull request adafruit/Adafruit_CircuitPython_HID#100 from Neradoc/get-last-received-report > Fix version strings in workflow files > Update version string Updating https://github.com/adafruit/Adafruit_CircuitPython_MiniMQTT to 5.4.0 from 5.3.3: > Merge pull request adafruit/Adafruit_CircuitPython_MiniMQTT#116 from vladak/socket_timeout_tunable > Fix version strings in workflow files > Update version string
allow to set socket timeout
This change allows to set socket timeout via the init function, like so:
I verified with
strace
that thepoll()
syscall timeout value reflects thesocket_timeout
parameter.