remove log line, fix tests to not connect to actual ip

This commit is contained in:
Timothy Pogue 2022-09-12 10:45:59 -06:00
parent 10852555e5
commit a477b3c244
2 changed files with 1 additions and 2 deletions

View File

@ -113,7 +113,6 @@ class DataProvider:
:param data: Tuple containing the DataFrame and the datetime it was cached
"""
if self.__rpc:
logger.debug(f"Sending df {dataframe.iloc[-1]}")
self.__rpc.send_msg(
{
'type': RPCMessageType.ANALYZED_DF,

View File

@ -28,7 +28,7 @@ def patched_emc(default_conf, mocker):
"producers": [
{
"name": "default",
"url": "ws://127.0.0.1:8080/api/v1/message/ws",
"url": "ws://something:port/api/v1/message/ws",
"ws_token": _TEST_WS_TOKEN
}
]