Skip to content

Commit

Permalink
Correct the number of args for DataFetcher constructor
Browse files Browse the repository at this point in the history
  • Loading branch information
iandees committed Feb 3, 2017
1 parent d1947ee commit 9202c6f
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 9202c6f

Please sign in to comment.