On an Indian server, using WebSocket stream and combineStreams to subscribe to Bitcoin, after running for a while, the received candlestick data is delayed by half an hour. It returns to normal after restarting the service. Could you please help me identify the issue? #116
On an Indian server, using WebSocket stream and combineStreams to subscribe to Bitcoin, after running for a while, the received candlestick data is delayed by half an hour. It returns to normal after restarting the service. Could you please help me identify the issue?
`wsStreamClient.combineStreams(list,
response -> {},
data -> {
try {
JsonNode baseNode = mapper.readTree(data);
JsonNode jsonNode = baseNode.get("data");
On an Indian server, using WebSocket stream and combineStreams to subscribe to Bitcoin, after running for a while, the received candlestick data is delayed by half an hour. It returns to normal after restarting the service. Could you please help me identify the issue?
`wsStreamClient.combineStreams(list, response -> {}, data -> { try { JsonNode baseNode = mapper.readTree(data); JsonNode jsonNode = baseNode.get("data");
`