ci: elasticsearch: do not set id for documentats.

Do not set id for docuemnts, lets elasticsearch do that on its own.

Signed-off-by: Anas Nashif <anas.nashif@intel.com>
This commit is contained in:
Anas Nashif 2023-02-13 16:34:33 +00:00
commit 59b3e5ba11

View file

@ -30,7 +30,6 @@ def gendata(f, index, run_date=None):
t['sub_component'] = sub_group
yield {
"_index": index,
"_id": t['run_id'],
"_source": t
}