Skip to content

Commit

Permalink
hmm, strange
Browse files Browse the repository at this point in the history
  • Loading branch information
icing committed Jan 13, 2025
1 parent cf20ac9 commit 705fb2d
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -95,4 +95,4 @@ jobs:
run: |
export PATH=$PATH:$HOME/go/bin
[ -x "$HOME/venv/bin/activate" ] && source $HOME/venv/bin/activate
pytest -v test/modules/md -k test_md_702_001
pytest -v test/modules/md -k test_md_702_001 ||find test/gen -ls
2 changes: 2 additions & 0 deletions test/modules/md/test_702_auto.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import os
import time
from datetime import timedelta

import pytest
Expand Down Expand Up @@ -45,6 +46,7 @@ def test_md_702_001(self, env):
#
# restart, check that MD is synched to store
assert env.apache_restart() == 0, f'{env.apachectl_stderr}'
time.sleep(20)
env.check_md(domains)
stat = env.get_md_status(domain)
assert stat["watched"] == 0
Expand Down
1 change: 1 addition & 0 deletions test/pyhttpd/env.py
Original file line number Diff line number Diff line change
Expand Up @@ -336,6 +336,7 @@ def setup_httpd(self, setup: HttpdTestSetup = None):
log_level = "debug"
else:
log_level = "info"
log_level = "trace2"
self._log_interesting = "LogLevel"
for name in self._httpd_log_modules:
self._log_interesting += f" {name}:{log_level}"
Expand Down

0 comments on commit 705fb2d

Please sign in to comment.