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
Is your feature request related to a problem? Please describe.
Cleanup function has bad signature without returning error now.
Basic usage of this functions to close connection or other resources.
So it should be better to return error imho.
Describe the solution you'd like
Change cleanup function signature from func() to func() error or io.Closer contract
Describe alternatives you've considered
Dunno how to handle cleanup errors now.
The text was updated successfully, but these errors were encountered:
Is your feature request related to a problem? Please describe.
Cleanup function has bad signature without returning error now.
Basic usage of this functions to close connection or other resources.
So it should be better to return error imho.
Describe the solution you'd like
Change cleanup function signature from
func()
tofunc() error
or io.Closer contractDescribe alternatives you've considered
Dunno how to handle cleanup errors now.
The text was updated successfully, but these errors were encountered: