From 6729214fe9c79ade0e580fb4c92f819c812b9f7c Mon Sep 17 00:00:00 2001 From: ckanibal Date: Thu, 7 Nov 2019 14:31:41 +0100 Subject: [PATCH] Update extractor.py This small change runs the extraction-step during the initial startup. See https://github.com/SnowMB/traefik-certificate-extractor/issues/3#issuecomment-534262213_ --- extractor.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/extractor.py b/extractor.py index 9122b8b..0e5aa2a 100644 --- a/extractor.py +++ b/extractor.py @@ -175,8 +175,9 @@ class Handler(FileSystemEventHandler): def __init__(self, args): self.args = args self.isWaiting = False - self.timer = threading.Timer(0.5, self.doTheWork) self.lock = threading.Lock() + self.timer = threading.Timer(0.5, self.doTheWork) + self.timer.start() def on_created(self, event): self.handle(event)