Merge "Setting streaming options as not required"

This commit is contained in:
Zuul 2018-01-18 01:36:25 +00:00 committed by Gerrit Code Review
commit 1d2d6af440
1 changed files with 4 additions and 2 deletions

View File

@ -203,9 +203,11 @@ class JobConfigAction(workflows.Action):
java_opts = forms.CharField(label=_("Java Opts"),
required=False)
streaming_mapper = forms.CharField(label=_("Mapper"))
streaming_mapper = forms.CharField(label=_("Mapper"),
required=False)
streaming_reducer = forms.CharField(label=_("Reducer"))
streaming_reducer = forms.CharField(label=_("Reducer"),
required=False)
hbase_common_lib = forms.BooleanField(
label=_("Use HBase Common library"),