Skip to content

Commit c9920af

Browse files
author
Zach Banks
committed
MOD: Increase live timeouts in Python client
1 parent d2760cc commit c9920af

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# Changelog
22

3+
## 0.31.1 - TBD
4+
5+
#### Enhancements
6+
- Increase `Live` session connection & authentication timeouts
7+
38
## 0.31.0 - 2024-03-05
49

510
#### Enhancements

databento/live/session.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@
2525

2626
logger = logging.getLogger(__name__)
2727

28-
AUTH_TIMEOUT_SECONDS: Final = 2.0
29-
CONNECT_TIMEOUT_SECONDS: Final = 5.0
28+
AUTH_TIMEOUT_SECONDS: Final = 30.0
29+
CONNECT_TIMEOUT_SECONDS: Final = 10.0
3030
DBN_QUEUE_CAPACITY: Final = 2**20
3131
DEFAULT_REMOTE_PORT: Final = 13000
3232

0 commit comments

Comments
 (0)