summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJenkins <jenkins@review.openstack.org>2016-02-12 19:04:15 +0000
committerGerrit Code Review <review@openstack.org>2016-02-12 19:04:15 +0000
commit1e9bcbf17d23cc602f0e3c4d31a1f7407907f0c6 (patch)
treeaedd3936b16cf8cb19ce75bf5335600dbec9bdd4
parent0fab50b53730afc18e951d3cf1ae5cd49a8dd33b (diff)
parent85a67996e71c4763e9ddb997190506a075f76041 (diff)
downloadoslo-db-4.5.0.tar.gz
Merge "stop making a copy of options discovered by config generator"4.5.0
-rw-r--r--oslo_db/options.py4
1 files changed, 1 insertions, 3 deletions
diff --git a/oslo_db/options.py b/oslo_db/options.py
index 5d8f74c..38e9024 100644
--- a/oslo_db/options.py
+++ b/oslo_db/options.py
@@ -10,8 +10,6 @@
# License for the specific language governing permissions and limitations
# under the License.
-import copy
-
from oslo_config import cfg
@@ -219,4 +217,4 @@ def list_opts():
:returns: a list of (group_name, opts) tuples
"""
- return [('database', copy.deepcopy(database_opts))]
+ return [('database', database_opts)]