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_
This commit is contained in:
ckanibal 2019-11-07 14:31:41 +01:00 committed by GitHub
parent 0f4cab45f2
commit 6729214fe9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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)