Skip to content

Commit

Permalink
Log startup notification
Browse files Browse the repository at this point in the history
  • Loading branch information
waschinski committed Jun 26, 2024
1 parent 59a5677 commit 187bca9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion extract.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@
from watchdog.observers import Observer
from watchdog.events import FileSystemEventHandler


INPUT_PATH = "/input"
CERTS_FOLDER = os.getenv('CERT_SUBFOLDER', '/certs')
CERTS_PATH = "/output" + CERTS_FOLDER
Expand Down Expand Up @@ -61,6 +60,7 @@ def main():
event_handler = ConfigFileHandler()
observer.schedule(event_handler, INPUT_PATH, recursive=False)
observer.start()
print("Starting to watch for certificate updates.")
try:
while True:
time.sleep(1)
Expand Down

0 comments on commit 187bca9

Please sign in to comment.