Skip to content

Commit

Permalink
try without forbidden outputs
Browse files Browse the repository at this point in the history
  • Loading branch information
Jörg Zimmermann committed Jan 2, 2025
1 parent 6ca0e95 commit a13669e
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion tests/acceptance/test_http_input_with_requests.py
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,9 @@ def test_http_input_accepts_message_for_multiple_pipelines(tmp_path: Path, confi
config_path = tmp_path / "generated_config.yml"
config_path.write_text(config.as_yaml())
proc = start_logprep(config_path)
wait_for_output(proc, "Uvicorn running on https://127.0.0.1:9000", test_timeout=15)
wait_for_output(
proc, "Uvicorn running on https://127.0.0.1:9000", test_timeout=15, forbidden_outputs=[]
)

requests.post("https://127.0.0.1:9000/plaintext", data="my message", verify=False, timeout=5)
time.sleep(0.5)
Expand Down

0 comments on commit a13669e

Please sign in to comment.