Merge "Uniform Airflow migration strategy implementation"

This commit is contained in:
Jenkins
2016-07-11 07:56:26 +00:00
committed by Gerrit Code Review
7 changed files with 629 additions and 1 deletions

View File

@@ -142,3 +142,23 @@ class WorkloadBalancing(base.Goal):
def get_efficacy_specification(cls):
"""The efficacy spec for the current goal"""
return specs.Unclassified()
class AirflowOptimization(base.Goal):
@classmethod
def get_name(cls):
return "airflow optimization"
@classmethod
def get_display_name(cls):
return _("Airflow optimization")
@classmethod
def get_translatable_display_name(cls):
return "Airflow optimization"
@classmethod
def get_efficacy_specification(cls):
"""The efficacy spec for the current goal"""
return specs.Unclassified()