We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a0f4057 commit 5a31715Copy full SHA for 5a31715
src/elapi/configuration/config.py
@@ -155,8 +155,8 @@ def _mask(self) -> str:
155
VERIFY_SSL_DEFAULT_VAL: bool = True
156
VERIFY_SSL = settings.get(KEY_VERIFY_SSL, None)
157
158
-# TIMEOUT falls back to 5.0 seconds if not defined in configuration
159
-TIMEOUT_DEFAULT_VAL: float = 5.0 # from httpx._config import DEFAULT_TIMEOUT_CONFIG
+# TIMEOUT falls back to 30.0 seconds if not defined in configuration
+TIMEOUT_DEFAULT_VAL: float = 30.0 # from httpx._config import DEFAULT_TIMEOUT_CONFIG
160
TIMEOUT = settings.get(KEY_TIMEOUT, None)
161
162
for key_name, key_val in [
0 commit comments