mirror of
https://github.com/SnowMB/traefik-certificate-extractor.git
synced 2025-04-05 03:29:30 +08:00
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:
parent
0f4cab45f2
commit
6729214fe9
@ -175,8 +175,9 @@ class Handler(FileSystemEventHandler):
|
|||||||
def __init__(self, args):
|
def __init__(self, args):
|
||||||
self.args = args
|
self.args = args
|
||||||
self.isWaiting = False
|
self.isWaiting = False
|
||||||
self.timer = threading.Timer(0.5, self.doTheWork)
|
|
||||||
self.lock = threading.Lock()
|
self.lock = threading.Lock()
|
||||||
|
self.timer = threading.Timer(0.5, self.doTheWork)
|
||||||
|
self.timer.start()
|
||||||
|
|
||||||
def on_created(self, event):
|
def on_created(self, event):
|
||||||
self.handle(event)
|
self.handle(event)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user