Brandon Cannaday
Brandon Cannaday
You are exactly right and networking between containers is a tough one. Docker link is brittle and the IP will change when the container is cycled and break the link....
I ran into this problem when passing a static memory buffer (from SDRAM) to MBED's Thread constructor. When not passing a buffer, the library connects successfully. The issue isn't related...
Update to the above, I believe the underlying issue is that `connect` will always fail if it's attempted before WiFi has been connected. I noticed the underlying [MbedClient](https://github.com/arduino/ArduinoCore-mbed/blob/master/libraries/SocketWrapper/src/MbedClient.cpp#L81) only attempts...