The current setup is already running on two different servers. Yesterday, only one of them got disconnected, but today both servers disconnected multiple times at exactly the same time.
@sujith Just to share my observations: Everything works perfectly between 9 am and 5 pm, but after around 5 pm, the connection starts getting disconnected. For example, yesterday it went down around 5:30 pm. Today, it disconnected multiple times—th…
@sujith i had to stop script and re-run, then it got connected instantly, re connection did not work for me at that time, these sockets were on two different network and got simultaneously disconnected.
Thank you for your response.
I am already using the Kite Connect library’s built-in reconnect feature, but I’d like to better understand what specifically causes these simultaneous disconnects, especially when my network seems stable and it happens…
would this work?
function onTicks(data1) {
try {
if (!Array.isArray(data1)) return;
data1.forEach(data => {
if (!data || data.mode !== 'full') {
return;
}
// Offloa…