Skip to content

Commit

Permalink
Merge pull request #191 from tilezen/zerebubuth/enqueue-max-zoom
Browse files Browse the repository at this point in the history
Replace 'enqueue_max_zoom' with 'max_zoom'
  • Loading branch information
zerebubuth authored Apr 19, 2017
2 parents 107c1d4 + 1ca908e commit 7430a81
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 7430a81

Please sign in to comment.