Skip to content

Commit

Permalink
Remove redundant timeout_interval_ms
Browse files Browse the repository at this point in the history
  • Loading branch information
cjdsellers committed Nov 16, 2024
1 parent 2248bb2 commit f7b9c0e
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 3 deletions.
2 changes: 0 additions & 2 deletions nautilus_trader/adapters/tardis/common.py
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,6 @@ def create_stream_normalized_request_options(
exchange: str,
symbols: list[str],
data_types: list[str],
timeout_interval_ms: int | None = None,
) -> nautilus_pyo3.StreamNormalizedRequestOptions:
PyCondition.not_empty(symbols, "symbols")
PyCondition.not_empty(data_types, "data_types")
Expand All @@ -135,7 +134,6 @@ def create_stream_normalized_request_options(
"exchange": exchange,
"symbols": symbols,
"data_types": data_types,
"timeout_interval_ms": timeout_interval_ms,
"with_disconnect_messages": True,
}

Expand Down
1 change: 0 additions & 1 deletion nautilus_trader/adapters/tardis/data.py
Original file line number Diff line number Diff line change
Expand Up @@ -224,7 +224,6 @@ def _subscribe_stream(
exchange=tardis_exchange_str,
symbols=[raw_symbol_str],
data_types=[tardis_data_type],
timeout_interval_ms=5_000,
)

if self._main_ws_delay:
Expand Down

0 comments on commit f7b9c0e

Please sign in to comment.