-
Notifications
You must be signed in to change notification settings - Fork 57
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
Update sequel version to >= 5.74.0 #153
Update sequel version to >= 5.74.0 #153
Conversation
0249acd
to
f1bc24f
Compare
logstash-integration-jdbc.gemspec
Outdated
# Pinned sequel version to >= 5.75.0 as it fixes the generic jdbc adapter to properly | ||
# handle disconnection errors, and avoid stale connections in the pool. | ||
s.add_runtime_dependency 'sequel', '>= 5.75.0' |
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.
# Pinned sequel version to >= 5.75.0 as it fixes the generic jdbc adapter to properly | |
# handle disconnection errors, and avoid stale connections in the pool. | |
s.add_runtime_dependency 'sequel', '>= 5.75.0' | |
# Pinned sequel version to >= 5.74.0 as it fixes the generic jdbc adapter to properly | |
# handle disconnection errors, and avoid stale connections in the pool. | |
s.add_runtime_dependency 'sequel', '>= 5.74.0' |
Given the fix was introduced with jeremyevans/sequel@813db79 and shipped with 5.74.0, maybe we can change this to 5.74.0 instead?
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.
Agreed, it makes sense! Thanks!
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.
LGTM
Updated the
sequel
gem version to >= 5.74.0Closes: #152