Closed mousetail closed 6 months ago
Fixes #77
Current code relies on drop() to close connections. This seems to not be enough for the SSL connection (perhaps because the close itself also blocks).
drop()
An explicit call to .close() seems to fix the issue.
.close()
List here your changes
.close().await
Please select relevant options.
cargo fmt
cargo clippy
wait for a project maintainer to fulfill this section...
The clippy errors seem unrelated to the changes
ISSUE NUMBER - PULL_REQUEST_TITLE
Fixes #77
Description
Current code relies on
drop()
to close connections. This seems to not be enough for the SSL connection (perhaps because the close itself also blocks).An explicit call to
.close()
seems to fix the issue.List here your changes
.close().await
Type of change
Please select relevant options.
Checklist
cargo fmt
cargo clippy
and reports no warningsAcceptance tests
wait for a project maintainer to fulfill this section...