We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8b8a8a3 commit a5bee0eCopy full SHA for a5bee0e
lib/concurrent/configuration.rb
@@ -171,14 +171,16 @@ def self.new_fast_executor(opts = {})
171
auto_terminate: opts.fetch(:auto_terminate, true),
172
idletime: 60, # 1 minute
173
max_queue: 0, # unlimited
174
- fallback_policy: :abort # shouldn't matter -- 0 max queue
+ fallback_policy: :abort, # shouldn't matter -- 0 max queue
175
+ name: "fast"
176
)
177
end
178
179
def self.new_io_executor(opts = {})
180
CachedThreadPool.new(
181
182
183
+ name: "io"
184
185
186
0 commit comments