Skip to content

Commit 881b4f9

Browse files
author
Christoph Wurm
committed
Fix mage integtest
1 parent 0a6f5d2 commit 881b4f9

2 files changed

Lines changed: 3 additions & 2 deletions

File tree

auditbeat/Dockerfile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
FROM golang:1.11.2
1+
FROM golang:1.10.6
2+
MAINTAINER Nicolas Ruflin <ruflin@elastic.co>
23

34
RUN \
45
apt-get update \

x-pack/auditbeat/tests/system/test_metricsets.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ def test_metricset_host(self):
2626
try:
2727
self.check_metricset("system", "host", COMMON_FIELDS + fields, warnings_allowed=True)
2828
except Exception as e:
29-
if "event.kind" not in str(e):
29+
if "event.kind" not in str(e) and "message" not in str(e):
3030
raise
3131

3232
@unittest.skip("Packages metricset is disabled")

0 commit comments

Comments
 (0)