Remove unused config option 'fake_call'

This option isn't used anywhere, and should be removed.

Closes-Bug: #1547068

Change-Id: Id2983a3c31fb767992976d3eff9649cc6ff4d8c3
This commit is contained in:
EdLeafe 2016-02-18 21:46:27 +00:00
parent caeb8ecb85
commit b8fea03518
3 changed files with 4 additions and 12 deletions

View File

@ -284,17 +284,6 @@ Possible values:
Any positive integer. The default is 5.
Related options:
``use_neutron``
"""),
cfg.BoolOpt("fake_call",
default=False,
help="""
When this option is True, calls are made locally instead of being placed in the
queue. However, all usage of this config option have been removed, so it
currently has no effect at all.
Related options:
``use_neutron``

View File

@ -599,7 +599,6 @@ class LibvirtConnTestCase(test.NoDBTestCase):
def setUp(self):
super(LibvirtConnTestCase, self).setUp()
self.flags(fake_call=True)
self.user_id = 'fake'
self.project_id = 'fake'
self.context = context.get_admin_context()

View File

@ -0,0 +1,4 @@
other:
- The network configuration option 'fake_call' has been removed. It hasn't
been used for several cycles, and has no effect on any code, so there
should be no impact.