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
* Add extra safety to local data retrieval
Under certain circumstances, retrieving local data from the embedded derby database
can result in an exception being thrown from the Sequel library that is not wrapped in
a `SequelError`. Prior to this commit, that would result in the exception "escaping" the
plugin, causing the plugin (and the pipeline) to crash.
This commit broadens the scope of the rescue to catch any errors that might result from
that call, enabling the appropriate logging and tagging to take place without crashing
the plugin.
Fixes#77
Copy file name to clipboardExpand all lines: logstash-integration-jdbc.gemspec
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
Gem::Specification.newdo |s|
2
2
s.name='logstash-integration-jdbc'
3
-
s.version='5.1.2'
3
+
s.version='5.1.3'
4
4
s.licenses=['Apache License (2.0)']
5
5
s.summary="Integration with JDBC - input and filter plugins"
6
6
s.description="This gem is a Logstash plugin required to be installed on top of the Logstash core pipeline using $LS_HOME/bin/logstash-plugin install gemname. This gem is not a stand-alone program"
0 commit comments