Make queue max 1

This commit is contained in:
Thijs Raymakers 2025-05-28 23:53:40 +02:00
parent ae2e2c1032
commit 3e79759cf0
No known key found for this signature in database

View file

@ -15,7 +15,7 @@ app = Flask(__name__)
app.config['TEMPLATES_AUTO_RELOAD'] = True
global unifi
QUEUE = Queue()
QUEUE = Queue(1)
VISITOR_COUNT_FILE = "visitor_count"
LIB = None