From 1ca908ef8399aa13b5d99e4018e3e11f5e8e87d4 Mon Sep 17 00:00:00 2001 From: Matt Amos Date: Wed, 19 Apr 2017 19:34:32 +0100 Subject: [PATCH] Replace 'enqueue_max_zoom', which doesn't exist in the config, with 'max_zoom'. --- tilequeue/command.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tilequeue/command.py b/tilequeue/command.py index 6685e477..43732044 100755 --- a/tilequeue/command.py +++ b/tilequeue/command.py @@ -944,7 +944,7 @@ def tilequeue_enqueue_tiles_of_interest(cfg, peripherals): coords = [] for coord_int in tiles_of_interest: coord = coord_unmarshall_int(coord_int) - if coord.zoom <= cfg.enqueue_max_zoom: + if coord.zoom <= cfg.max_zoom: coords.append(coord) enqueuer = ThreadedEnqueuer(sqs_queue, cfg.seed_n_threads, logger)