Add draft ip-mismatch skip case

lifo_pps_ib
Tyler Goodlet 2022-06-21 12:52:45 -04:00
parent 3713288b48
commit 4475823e48
1 changed files with 9 additions and 2 deletions

View File

@ -217,8 +217,8 @@ async def get_bars(
)
elif (
err.code == 162
and 'HMDS query returned no data' in err.message
err.code == 162 and
'HMDS query returned no data' in err.message
):
# XXX: this is now done in the storage mgmt layer
# and we shouldn't implicitly decrement the frame dt
@ -237,6 +237,13 @@ async def get_bars(
frame_size=2000,
)
# elif (
# err.code == 162 and
# 'Trading TWS session is connected from a different IP address' in err.message
# ):
# log.warning("ignoring ip address warning")
# continue
elif _pacing in msg:
log.warning(