Skip to content

Commit

Permalink
Disable blocklisting in existing tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Carlos Pérez-Aradros Herce committed Nov 16, 2018
1 parent 8bc8b24 commit e91a844
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion x-pack/libbeat/tests/system/test_management.py
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,11 @@ def test_fetch_configs(self):
])

# Start beat
proc = self.start_beat(extra_args=["-E", "management.period=1s"])
proc = self.start_beat(extra_args=[
"-E", "management.period=1s",
# do not blacklist file output
"-E", "management.blacklist.output='.*'",
])

# Wait for beat to apply new conf
self.wait_log_contains("Applying settings for output")
Expand Down Expand Up @@ -163,6 +167,8 @@ def test_configs_cache(self):
proc = self.start_beat(extra_args=[
"-E", "management.kibana.host=wronghost",
"-E", "management.kibana.timeout=0.5s",
# do not blacklist file output
"-E", "management.blacklist.output='.*'",
])
self.wait_until(cond=lambda: self.output_has(
1, output_file=output_file))
Expand Down

0 comments on commit e91a844

Please sign in to comment.