asyncer-io / r2dbc-mysql

Reactive Relational Database Connectivity for MySQL. The official successor to mirromutth/r2dbc-mysql(dev.miku:r2dbc-mysql).
https://r2dbc.io
Apache License 2.0
195 stars 21 forks source link

Fix Connection prematurely closed #144

Closed jchrys closed 11 months ago

jchrys commented 11 months ago

Motivation: The existing ReactorNettyClient#close() method might not handle requests asynchronously, potentially resulting in premature connection closure.

Modification: Make sure that ReactorNettyClient#close() handles requests asynchronously.

Result: Resolves #139