Skip to content

Commit

Permalink
Merge pull request #54 from tilezen/zerebubuth/fix-queue-interface
Browse files Browse the repository at this point in the history
Update tileserver's use of make_queue to the new interface
  • Loading branch information
zerebubuth authored Dec 5, 2016
2 parents 10f92e1 + 6490625 commit f704c89
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tileserver/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -506,7 +506,8 @@ def create_tileserver_from_config(config):
if queue_config:
queue_type = queue_config.get('type')
queue_name = queue_config.get('name')
sqs_queue = make_queue(queue_type, queue_name, redis_client)
sqs_queue = make_queue(queue_type, queue_name, queue_config,
redis_client)

health_checker = None
health_check_config = config.get('health')
Expand Down

0 comments on commit f704c89

Please sign in to comment.