Skip to content

Commit

Permalink
Replace 'enqueue_max_zoom', which doesn't exist in the config, with '…
Browse files Browse the repository at this point in the history
…max_zoom'.
  • Loading branch information
Matt Amos committed Apr 19, 2017
1 parent 107c1d4 commit 1ca908e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tilequeue/command.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 1ca908e

Please sign in to comment.