File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 66import requests
77from urllib3 import Retry
88
9- from corva .api_utils import get_retry_strategy , get_requests_session
9+ from corva .api_utils import get_requests_session , get_retry_strategy
1010from corva .configuration import SETTINGS
1111
1212
@@ -160,11 +160,11 @@ def _request(
160160 }
161161
162162 return self ._execute_request (
163- method = method ,
164- url = url ,
165- params = params ,
166- data = data ,
167- headers = headers ,
163+ method = method ,
164+ url = url ,
165+ params = params ,
166+ data = data ,
167+ headers = headers ,
168168 )
169169
170170 def get_dataset (
Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ class Settings(pydantic.BaseSettings):
2626 # keep-alive
2727 POOL_CONNECTIONS_COUNT : int = 20 # Total pools count
2828 POOL_MAX_SIZE : int = 20 # Max connections count per pool/host
29- POOL_BLOCK : bool = True # If all conn ack - wait until pool connection released
29+ POOL_BLOCK : bool = True # Wait until connection released
3030
3131 # retry
3232 MAX_RETRY_COUNT : int = 3 # If `0` then retires will be disabled
You can’t perform that action at this time.
0 commit comments