forest_admin_agent 1.18.2 → 1.18.3

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: 34b3a41aa849d5f38a8631577e514899eaf9608230f90049596787a0f9a2042b
4
- data.tar.gz: c999f42eefa8264753f80788e6ca05d595617d944f95e88f85378bfb0f325e4c
3
+ metadata.gz: f36f41759924649954b47b27267bb0aa2f7168378f6d3e824b6df39714cd6edd
4
+ data.tar.gz: 7e639cdfd2f25d181c95e586390ad64f65a5ed0e20177b1a3f7ad1ea99b0a35c
5
5
  SHA512:
6
- metadata.gz: 729ab09bc7174076c67f15a3a2018c801d902b0cc1eb2fe2ca5d7414380fa0baa6b5cca22b39940df628e001b38c607a3bbfd0fdbec7aa9ec4fd872460f103a5
7
- data.tar.gz: 4f11327ae9911fc2398ac8af076c8321c85c114b6d51b4ab352883533789aaba03f30032f39271a1ce186be77b246bcd57d993010ada55e7afa42aa9ad9be823
6
+ metadata.gz: bf8131e2ea5564a63c482b85ba2a22f0dd0b52e914a279d83dbc424ba117dc9d77ad885b1e75f6cf8c14468a3aab314a3ccbcb5a8c04891621f28f3679cadfd8
7
+ data.tar.gz: 0c8ad4732c98c0accaee081a08f16a8f7ebf24471846009985ba7edb29ed26c9ab9fe2e2cbcd8c94224573173411d6861681efc93ab2bb7bd47edfa9d4b8f813
@@ -205,6 +205,17 @@ module ForestAdminAgent
205
205
  @options[:logger] = clean_option_value(@options[:logger], 'config.logger =')
206
206
 
207
207
  @container.register(:config, @options.to_h)
208
+
209
+ configure_rpc_polling_pool if @options[:rpc_max_polling_threads]
210
+ end
211
+
212
+ def configure_rpc_polling_pool
213
+ max_threads = @options[:rpc_max_polling_threads].to_i
214
+ return unless max_threads.positive?
215
+
216
+ return unless defined?(ForestAdminDatasourceRpc)
217
+
218
+ ForestAdminDatasourceRpc.configure_polling_pool(max_threads: max_threads)
208
219
  end
209
220
 
210
221
  def build_logger
@@ -6,7 +6,7 @@ module ForestAdminAgent
6
6
  module Schema
7
7
  class SchemaEmitter
8
8
  LIANA_NAME = "agent-ruby"
9
- LIANA_VERSION = "1.18.2"
9
+ LIANA_VERSION = "1.18.3"
10
10
 
11
11
  def self.generate(datasource)
12
12
  datasource.collections
@@ -1,3 +1,3 @@
1
1
  module ForestAdminAgent
2
- VERSION = "1.18.2"
2
+ VERSION = "1.18.3"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: forest_admin_agent
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.18.2
4
+ version: 1.18.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Matthieu
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: exe
11
11
  cert_chain: []
12
- date: 2025-12-12 00:00:00.000000000 Z
12
+ date: 2025-12-22 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: activesupport