I had configured a server in lora-app-server the configuration was ok and everything started to work, but the I reallize that had to change some ports and ips. Changed everything and It still works but sometimes I can see this message in logs:
addrConn.resetTransport failed to create client transport: connection error: desc = “transport: Error while dialing dial tcp 10.0.2.15:8888: getsockopt: connection refused”;
That is the server old IP that I changed (I only changed the ip)
I think I know what it is. Because you changed the IP of the server and in the network-server entry the connection-pool created a new client to the new IP, but it doesn’t remove the old client hence the erors you sometimes see while everything is still working.
What I need to do is when you update the network-server with a different host:ip, that it disconnects the old client in the pool and cleans it up (which is what also happened after your restart).