I am not sure what you meant but on looking at your code I saw something.
if (!client.connected()) {
Serial.println("disconnecting");
client.stop();
delay(2000);
while(true);
}
The last line (while (true)) will run forever and never exit if it is reached. Perhaps if you remove it you might get the desired functionality.