Skip to content

Commit 5080267

Browse files
committed
Fix data request identifier attribute access
1 parent 448cd29 commit 5080267

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

RELEASES.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,9 @@ Released on TBD (UTC).
1919
- Upgraded `pyo3` and `pyo3-async-runtimes` crates to v0.25.0
2020

2121
### Fixes
22-
- Fixed `generate_order_modify_rejected` typo in Binance execution client (#2682), thanks for reporting @etiennepar
2322
- Fixed order status report generation for Polymarket where `venue_order_id` was unbounded
23+
- Fixed data request identifier attribute access for `LiveDataClient`
24+
- Fixed `generate_order_modify_rejected` typo in Binance execution client (#2682), thanks for reporting @etiennepar
2425
- Fixed Arrow schema registration for `BinanceBar`
2526
- Fixed spot and futures sandbox for Binance (#2687), thanks @petioptrv
2627

nautilus_trader/live/data_client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -254,7 +254,7 @@ def unsubscribe(self, command: UnsubscribeData) -> None:
254254
# -- REQUESTS ---------------------------------------------------------------------------------
255255

256256
def request(self, request: RequestData) -> None:
257-
self._log.debug(f"Request {request.data_type} {request.request_id}")
257+
self._log.debug(f"Request {request.data_type} {request.id}")
258258
self.create_task(
259259
self._request(request),
260260
log_msg=f"request_{request.data_type}",

0 commit comments

Comments
 (0)