Skip to content
Permalink

Comparing changes

This is a direct comparison between two commits made in this repository or its related repositories. View the default comparison for this range or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: fkie-cad/Logprep
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: a13669e0f84ab26fa998b0e6e80015b6fe64bf3c
Choose a base ref
..
head repository: fkie-cad/Logprep
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 6ca0e95c2e51fda7518be8325dbf9f58a6aab79b
Choose a head ref
Showing with 1 addition and 3 deletions.
  1. +1 −3 tests/acceptance/test_http_input_with_requests.py
4 changes: 1 addition & 3 deletions tests/acceptance/test_http_input_with_requests.py
Original file line number Diff line number Diff line change
@@ -76,9 +76,7 @@ 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, forbidden_outputs=[]
)
wait_for_output(proc, "Uvicorn running on https://127.0.0.1:9000", test_timeout=15)

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