File tree Expand file tree Collapse file tree 3 files changed +2
-5
lines changed
backend/deepchecks_monitoring Expand file tree Collapse file tree 3 files changed +2
-5
lines changed Original file line number Diff line number Diff line change 5050 with :
5151 requirements : " backend/requirements-all.txt"
5252 fail : " Copyleft,Other,Error"
53- exclude : ' (category_encoders.*2\.7\..*|attrs.*25\.3\..*|referencing.*0\.36\..*|envier.*0\.5\.0|psycopg2.*2\.9\.3|fqdn.*1\.5\.1|pyzmq.*25\.1\.2|debugpy.*1\.6\.7|certifi.*2025\.1\.31|tqdm.*4\.67\..*|webencodings.*0\.5\.1|torch.*1\.10\.2.*|torch.*1\.11\.0.*|pytorch-ignite.*0\.4\.10.*|torchaudio.*0\.11\.0.*|torchvision.*0\.12\.0.*|terminado.*0\.15\.0|qudida.*0\.0\.4|expiringdict.*1\.2\.2|botocore.*1\.29\.80|orderedmultidict.*1\.0\.1|termcolor.*3\.0\.1|deepchecks.*)' # psycopg2 is LGPL 2
53+ exclude : ' (category_encoders.*2\.7\..*|attrs.*25\.3\..*|referencing.*0\.36\..*|envier.*0\.5\.0|psycopg2.*2\.9\.3|fqdn.*1\.5\.1|pyzmq.*25\.1\.2|debugpy.*1\.6\.7|certifi.*2025\.1\.31|tqdm.*4\.67\..*|webencodings.*0\.5\.1|torch.*1\.10\.2.*|torch.*1\.11\.0.*|pytorch-ignite.*0\.4\.10.*|torchaudio.*0\.11\.0.*|torchvision.*0\.12\.0.*|terminado.*0\.15\.0|qudida.*0\.0\.4|expiringdict.*1\.2\.2|botocore.*1\.29\.80|orderedmultidict.*1\.0\.1|termcolor.*3\.0\.1|pillow.*11\.2\.1|deepchecks.*)'
54+ # psycopg2 is LGPL 2
5455 # category_encoders is BSD https://github.com/scikit-learn-contrib/category_encoders/tree/master?tab=BSD-3-Clause-1-ov-file
5556 # attrs is MIT https://github.com/python-attrs/attrs/blob/main/LICENSE
5657 # referencing is MIT https://github.com/python-jsonschema/referencing?tab=MIT-1-ov-file
Original file line number Diff line number Diff line change @@ -137,8 +137,6 @@ class RedisSettings(BaseDeepchecksSettings):
137137 """Redis settings."""
138138
139139 redis_uri : t .Optional [RedisDsn ] = None
140- socket_connect_timeout : int = 5
141- socket_timeout : int = 5
142140 socket_keepalive : bool = True
143141 retry_attempts : int = 6
144142 cluster_error_retry_attempts : int = 2
Original file line number Diff line number Diff line change @@ -12,8 +12,6 @@ def create_settings_dict(redis_settings: RedisSettings):
1212
1313 return dict (
1414 url = redis_settings .redis_uri ,
15- socket_connect_timeout = redis_settings .socket_connect_timeout ,
16- socket_timeout = redis_settings .socket_timeout ,
1715 socket_keepalive = redis_settings .socket_keepalive ,
1816 retry = Retry (ExponentialBackoff (), redis_settings .retry_attempts ),
1917 )
You can’t perform that action at this time.
0 commit comments