Skip to content

Commit

Permalink
Typo fix
Browse files Browse the repository at this point in the history
  • Loading branch information
ktarasz authored Jan 14, 2019
1 parent af847e7 commit fba34cc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion openprocurement_client/resources/sync.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ def __init__(self, host=DEFAULT_API_HOST, version=DEFAULT_API_VERSION,
self.extra_params = extra_params
self.retrievers_params = deepcopy(DEFAULT_RETRIEVERS_PARAMS)
self.retrievers_params.update(retrievers_params)
self.queue = PriorityQueue(maxsize=retrievers_params['queue_size'])
self.queue = PriorityQueue(maxsize=self.retrievers_params['queue_size'])

self.forward_priority = 1 if with_priority else 0
self.backward_priority = 1000 if with_priority else 0
Expand Down

0 comments on commit fba34cc

Please sign in to comment.