Skip to content

Commit

Permalink
Merge pull request #62 from tilezen/remove_extra_arg
Browse files Browse the repository at this point in the history
Correct the number of args for DataFetcher constructor
  • Loading branch information
iandees authored Feb 3, 2017
2 parents d1947ee + 9202c6f commit 06d559e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tileserver/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -541,7 +541,7 @@ def create_tileserver_from_config(config):
n_conn = len(layer_data)
io_pool = ThreadPool(n_conn)
data_fetcher = DataFetcher(
conn_info, all_layer_data, io_pool, n_conn, n_conn * 4)
conn_info, all_layer_data, io_pool, n_conn)

store = None
store_config = config.get('store')
Expand Down

0 comments on commit 06d559e

Please sign in to comment.