Fix auditDFileAlerts update object

Signed-off-by: Brandon Myers <bmyers@mozilla.com>
This commit is contained in:
Brandon Myers 2016-11-01 14:01:23 -05:00
Родитель f8f32b75b5
Коммит ef8bd7ca70
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 8AA79AD83045BBC7
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -180,7 +180,7 @@ def createAlerts(es, indicatorCounts):
e['_source']['alerts'].append(dict(index=alertResult['_index'], type=alertResult['_type'], id=alertResult['_id']))
e['_source']['alerttimestamp'] = toUTC(datetime.now()).isoformat()
es.update(e['_index'], e['_type'], e['_id'], document=e['_source'])
es.save_object(index=e['_index'], doc_type=e['_type'], doc_id=e['_id'], body=e['_source'])
alertToMessageQueue(alert)
except ValueError as e: