Alon Bar-Lev has uploaded a new change for review. Change subject: core: fix plugin function names ......................................................................
core: fix plugin function names Change-Id: Id22bda5e422d83ace7b3df1f91790fa045fa029b Signed-off-by: Alon Bar-Lev <[email protected]> --- M src/plugins/otopi/core/config.py M src/plugins/otopi/core/misc.py 2 files changed, 3 insertions(+), 3 deletions(-) git pull ssh://gerrit.ovirt.org:29418/otopi refs/changes/12/10512/1 diff --git a/src/plugins/otopi/core/config.py b/src/plugins/otopi/core/config.py index 532a262..4a2f71f 100644 --- a/src/plugins/otopi/core/config.py +++ b/src/plugins/otopi/core/config.py @@ -132,7 +132,7 @@ stage=plugin.Stages.STAGE_CUSTOMIZATION, priority=plugin.Stages.PRIORITY_HIGH, ) - def _customize(self): + def _customize1(self): self._readEnvironment( section=constants.Const.CONFIG_SECTION_OVERRIDE, override=True, @@ -142,7 +142,7 @@ stage=plugin.Stages.STAGE_CUSTOMIZATION, priority=plugin.Stages.PRIORITY_LOW, ) - def _customize(self): + def _customize2(self): self._readEnvironment( section=constants.Const.CONFIG_SECTION_ENFORCE, override=True, diff --git a/src/plugins/otopi/core/misc.py b/src/plugins/otopi/core/misc.py index 483a488..30be6b8 100644 --- a/src/plugins/otopi/core/misc.py +++ b/src/plugins/otopi/core/misc.py @@ -72,7 +72,7 @@ stage=plugin.Stages.STAGE_VALIDATION, priority=plugin.Stages.PRIORITY_FIRST, ) - def _setup(self): + def _validation(self): # as we want full dump and not delta # of something before validation self.context.dumpEnvironment() -- To view, visit http://gerrit.ovirt.org/10512 To unsubscribe, visit http://gerrit.ovirt.org/settings Gerrit-MessageType: newchange Gerrit-Change-Id: Id22bda5e422d83ace7b3df1f91790fa045fa029b Gerrit-PatchSet: 1 Gerrit-Project: otopi Gerrit-Branch: master Gerrit-Owner: Alon Bar-Lev <[email protected]> _______________________________________________ Engine-patches mailing list [email protected] http://lists.ovirt.org/mailman/listinfo/engine-patches
