Commit c963937f authored by BaiJiangJie's avatar BaiJiangJie

[Update] 命令存储ES字段设置为required

parent b64ae358
...@@ -149,7 +149,7 @@ class ReplayStorageSwiftForm(BaseReplayStorageForm): ...@@ -149,7 +149,7 @@ class ReplayStorageSwiftForm(BaseReplayStorageForm):
class CommandStorageTypeESForm(BaseCommandStorageForm): class CommandStorageTypeESForm(BaseCommandStorageForm):
es_hosts = forms.CharField( es_hosts = forms.CharField(
max_length=128, label=_('Hosts'), required=False, max_length=128, label=_('Hosts'), required=True,
help_text=_( help_text=_(
""" """
Tips: If there are multiple hosts, separate them with a comma (,) Tips: If there are multiple hosts, separate them with a comma (,)
...@@ -159,8 +159,8 @@ class CommandStorageTypeESForm(BaseCommandStorageForm): ...@@ -159,8 +159,8 @@ class CommandStorageTypeESForm(BaseCommandStorageForm):
) )
) )
es_index = forms.CharField( es_index = forms.CharField(
max_length=128, label=_('Index'), required=False max_length=128, label=_('Index'), required=True
) )
es_doc_type = forms.CharField( es_doc_type = forms.CharField(
max_length=128, label=_('Doc type'), required=False max_length=128, label=_('Doc type'), required=True
) )
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment