fix: 将 es 的 doc_type 默认值改为 _doc

pull/6668/head
xinwen 2021-08-11 16:13:30 +08:00 committed by 老广
parent ff804b2d19
commit 173c450b25
1 changed files with 1 additions and 1 deletions

View File

@ -153,7 +153,7 @@ class CommandStorageTypeESSerializer(serializers.Serializer):
INDEX = serializers.CharField(
max_length=1024, default='jumpserver', label=_('Index'), allow_null=True
)
DOC_TYPE = ReadableHiddenField(default='command', label=_('Doc type'), allow_null=True)
DOC_TYPE = ReadableHiddenField(default='_doc', label=_('Doc type'), allow_null=True)
IGNORE_VERIFY_CERTS = serializers.BooleanField(
default=False, label=_('Ignore Certificate Verification'),
source='OTHER.IGNORE_VERIFY_CERTS', allow_null=True,