From 33066df7cab3cb6e72de885e0ae19668a3fa2210 Mon Sep 17 00:00:00 2001 From: Steve McLellan Date: Mon, 13 Jun 2016 14:30:42 -0500 Subject: [PATCH] Correct doc_values info in authoring plugins docs disable_doc_values no longer exists; corrects documentation to the correct property name. Change-Id: Id5b9f5a07072ceb364fd289fd4ffb9ee86007dc2 Closes-Bug: #1579986 --- doc/source/authoring-plugins.rst | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/doc/source/authoring-plugins.rst b/doc/source/authoring-plugins.rst index 210cb5ce..83407628 100644 --- a/doc/source/authoring-plugins.rst +++ b/doc/source/authoring-plugins.rst @@ -419,11 +419,11 @@ the default can be overriden: [resource_plugin:os_neutron_net] mapping_use_doc_values = false -* For a plugin's entire mapping; in code, override the ``disable_doc_values`` - property:: +* For a plugin's entire mapping; in code, override the ``mapping_use_doc_values`` + property (and thus ignoring any configuration property):: @property - def disable_doc_values(self): + def mapping_use_doc_values(self): return False * For individual fields in a mapping, by setting ``doc_values`` to False::