-
Notifications
You must be signed in to change notification settings - Fork 3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
DCR based Logstash plugin - limit excon version and handle client tim…
…eout (#11539) * Handle client timeout with an additional retry * Limit excon version to lower than v1.0.0 to avoid omit_default_port deprecation * Update version.rb * Update CHANGELOG.md --------- Co-authored-by: Haim Naamati <haimnaamati@microsoft.com> Co-authored-by: Roei Dimi <roeid@microsoft.com>
- Loading branch information
1 parent
fe61a34
commit 8e79b9e
Showing
4 changed files
with
11 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
...crosoft-sentinel-log-analytics-logstash-output-plugin/lib/logstash/sentinel_la/version.rb
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
module LogStash; module Outputs; | ||
class MicrosoftSentinelOutputInternal | ||
VERSION_INFO = [1, 1, 3].freeze | ||
VERSION_INFO = [1, 1, 4].freeze | ||
VERSION = VERSION_INFO.map(&:to_s).join('.').freeze | ||
|
||
def self.version | ||
VERSION | ||
end | ||
end | ||
end;end | ||
end;end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters