Fix bug where max_concurrent_tasks for...

scanner queue would be initialized to 0.
This commit is contained in:
viktorstrate
2020-09-24 17:52:53 +02:00
parent 6dc9345a96
commit bbff25973e
3 changed files with 25 additions and 18 deletions

View File

@@ -1,4 +1,4 @@
ALTER TABLE site_info
ADD COLUMN IF NOT EXISTS periodic_scan_interval int(8) NOT NULL DEFAULT 0,
ADD COLUMN IF NOT EXISTS concurrent_workers int(8) NOT NULL DEFAULT 3;
ADD COLUMN IF NOT EXISTS periodic_scan_interval int(8) NOT NULL,
ADD COLUMN IF NOT EXISTS concurrent_workers int(8) NOT NULL;