logstash-input-http 4.1.0-java → 4.1.1-java

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: fe102365f0992c7be2664c393bb5678e17980fe6f66d35d8027a3b2a90d572d9
4
- data.tar.gz: 52408f65829a38c1737ed7bb06a7b01ec1f1b1038bf36cd1e610d8c490ac723c
3
+ metadata.gz: 5995f6ffdb09de7e3482f265836ce1053be15f8aa2704a4080537be0b2f26abf
4
+ data.tar.gz: 23763ff5feb081d03d0bb899782ba8cd2d26f3c1bbd36fd387b3126f2dc4f671
5
5
  SHA512:
6
- metadata.gz: eed5f4bde55202f473b37a0743dc4995c675980fdc365c0b0df230ae209477d6e108ecfb028387cc1c57f826cfd38f9c7e295d30f8ebb07a3d0d6c6819790fe2
7
- data.tar.gz: 7d72588d9a877920e22d37d7870999ea22b81680f0834179bdef3ab0ebac355337285b2db2c58ee97aaa7f3722ecd8f866770cded3660fef5872921e81f0895a
6
+ metadata.gz: b7397f2fbd52c987b057086e4d14ed7e9cbc9228ea3a54d1e57a92f576df33b97140bf1e0860846638d47a7b3625be997fbdf868c312bfa3c3dcfd4cfb035fff
7
+ data.tar.gz: b57c461e6331abb8c87930a1970d1d139d04aad54de3070d1ed97a709fcee4a3f37676cfed3b3657f3534992718a89c7d3f4fedac17d421cc515fc456c35d1d5
data/CHANGELOG.md CHANGED
@@ -1,3 +1,6 @@
1
+ ## 4.1.1
2
+ - Properly naming netty threads [#191](https://github.com/logstash-plugins/logstash-input-http/pull/191)
3
+
1
4
  ## 4.1.0
2
5
  - add improved proactive rate-limiting, rejecting new requests when queue has been actively blocking for more than 10 seconds [#186](https://github.com/logstash-plugins/logstash-input-http/pull/186)
3
6
  - This is a forward-port of functionality also introduced to the 3.x series in v3.10.0
data/VERSION CHANGED
@@ -1 +1 @@
1
- 4.1.0
1
+ 4.1.1
@@ -324,7 +324,8 @@ class LogStash::Inputs::Http < LogStash::Inputs::Base
324
324
 
325
325
  def create_http_server(message_handler)
326
326
  org.logstash.plugins.inputs.http.NettyHttpServer.new(
327
- @host, @port, message_handler, build_ssl_params, @threads, @max_pending_requests, @max_content_length, @response_code)
327
+ @id, @host, @port, message_handler, build_ssl_params, @threads,
328
+ @max_pending_requests, @max_content_length, @response_code)
328
329
  end
329
330
 
330
331
  def build_ssl_params
@@ -8,4 +8,4 @@ require_jar('io.netty', 'netty-common', '4.1.115.Final')
8
8
  require_jar('io.netty', 'netty-transport', '4.1.115.Final')
9
9
  require_jar('io.netty', 'netty-handler', '4.1.115.Final')
10
10
  require_jar('io.netty', 'netty-transport-native-unix-common', '4.1.115.Final')
11
- require_jar('org.logstash.plugins.input.http', 'logstash-input-http', '4.1.0')
11
+ require_jar('org.logstash.plugins.input.http', 'logstash-input-http', '4.1.1')
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: logstash-input-http
3
3
  version: !ruby/object:Gem::Version
4
- version: 4.1.0
4
+ version: 4.1.1
5
5
  platform: java
6
6
  authors:
7
7
  - Elastic
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-12-19 00:00:00.000000000 Z
11
+ date: 2025-02-04 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  requirement: !ruby/object:Gem::Requirement
@@ -176,7 +176,7 @@ files:
176
176
  - vendor/jar-dependencies/io/netty/netty-handler/4.1.115.Final/netty-handler-4.1.115.Final.jar
177
177
  - vendor/jar-dependencies/io/netty/netty-transport-native-unix-common/4.1.115.Final/netty-transport-native-unix-common-4.1.115.Final.jar
178
178
  - vendor/jar-dependencies/io/netty/netty-transport/4.1.115.Final/netty-transport-4.1.115.Final.jar
179
- - vendor/jar-dependencies/org/logstash/plugins/input/http/logstash-input-http/4.1.0/logstash-input-http-4.1.0.jar
179
+ - vendor/jar-dependencies/org/logstash/plugins/input/http/logstash-input-http/4.1.1/logstash-input-http-4.1.1.jar
180
180
  homepage: http://www.elastic.co/guide/en/logstash/current/index.html
181
181
  licenses:
182
182
  - Apache License (2.0)