Skip to content

Commit

Permalink
fixup! manager: files watchdog: watchdog created specifically for TLS…
Browse files Browse the repository at this point in the history
… certificate files
  • Loading branch information
alesmrazek committed Nov 28, 2024
1 parent db89f28 commit 9fd0abe
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions python/knot_resolver/manager/files/watchdog.py
Original file line number Diff line number Diff line change
Expand Up @@ -90,10 +90,12 @@ def schedule(self) -> None:
self._observer.schedule(
event_handler,
str(self._cert_file),
recursive=False,
)
self._observer.schedule(
event_handler,
str(self._key_file),
recursive=False,
)

def reschedule(self) -> None:
Expand Down

0 comments on commit 9fd0abe

Please sign in to comment.