diff options
author | Vitaly Gridnev <vgridnev@mirantis.com> | 2016-07-20 10:44:01 +0300 |
---|---|---|
committer | Vitaly Gridnev <vgridnev@mirantis.com> | 2016-07-20 10:44:38 +0300 |
commit | bd8da651f46cd071932b11674c3adb9900158e06 (patch) | |
tree | 0f3ebbd8d570da8a10d0ec38b07b9df0a787d35b /saharaclient/osc | |
parent | a5c8c27c9cc1d8566b9603154ed33b741660be26 (diff) | |
download | python-saharaclient-bd8da651f46cd071932b11674c3adb9900158e06.tar.gz |
include storm.pyleus in job types
Change-Id: I44f4a85ce9c037e8fa1a75c2b4ff214902bf974c
Diffstat (limited to 'saharaclient/osc')
-rw-r--r-- | saharaclient/osc/v1/job_templates.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/saharaclient/osc/v1/job_templates.py b/saharaclient/osc/v1/job_templates.py index 0632e43..c71f820 100644 --- a/saharaclient/osc/v1/job_templates.py +++ b/saharaclient/osc/v1/job_templates.py @@ -26,8 +26,8 @@ from saharaclient.osc.v1 import utils JOB_TEMPLATE_FIELDS = ['name', 'id', 'type', 'mains', 'libs', 'description', 'is_public', 'is_protected'] -JOB_TYPES_CHOICES = ['Hive', 'Java', 'MapReduce', 'Storm', 'Pig', 'Shell', - 'MapReduce.Streaming', 'Spark'] +JOB_TYPES_CHOICES = ['Hive', 'Java', 'MapReduce', 'Storm', 'Storm.Pyleus', + 'Pig', 'Shell', 'MapReduce.Streaming', 'Spark'] def _format_job_template_output(data): |