Skip to content

Commit ce10332

Browse files
committed
Remove "threadpool_size" config parameter
* was only used for Thin/EventMachine
1 parent e57fac6 commit ce10332

File tree

5 files changed

+0
-10
lines changed

5 files changed

+0
-10
lines changed

config/bosh-lite.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -268,5 +268,3 @@ diego:
268268
pid_limit: 1024
269269

270270
shared_isolation_segment_name: shared
271-
272-
threadpool_size: 20

config/cloud_controller.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -394,7 +394,6 @@ locket:
394394
cert_file: 'spec/fixtures/certs/bbs_client.crt'
395395
key_file: 'spec/fixtures/certs/bbs_client.key'
396396

397-
threadpool_size: 20
398397
webserver: puma
399398
default_app_lifecycle: buildpack
400399
custom_metric_tag_prefix_list: ["metric.tag.cloudfoundry.org"]

lib/cloud_controller/config_schemas/api_schema.rb

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -315,7 +315,6 @@ class ApiSchema < VCAP::Config
315315
},
316316

317317
request_timeout_in_seconds: Integer,
318-
threadpool_size: Integer,
319318
skip_cert_verify: bool,
320319

321320
webserver: String, # currently only puma

spec/fixtures/config/port_8181_config.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -229,5 +229,3 @@ credhub_api:
229229

230230
credential_references:
231231
interpolate_service_bindings: true
232-
233-
threadpool_size: 20

spec/unit/lib/cloud_controller/config_spec.rb

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -209,10 +209,6 @@ module VCAP::CloudController
209209
expect(config[:request_timeout_in_seconds]).to eq(600)
210210
end
211211

212-
it 'preserves the threadpool_size value from the file' do
213-
expect(config[:threadpool_size]).to eq(20)
214-
end
215-
216212
it 'preserves the value of the staging auth user/password' do
217213
expect(config[:staging][:auth][:user]).to eq('bob')
218214
expect(config[:staging][:auth][:password]).to eq('laura')

0 commit comments

Comments
 (0)