[c10d] Improve the "not yet listening" warning message of `socket` (#71864)
Summary:
Pull Request resolved: https://github.com/pytorch/pytorch/pull/71864
A very minor change in one of the warning messages of `socket` to make it clear that it is a transient issue and not an error.
```
[W socket.cpp:634] The server socket on [localhost]:29501 is not yet listening (errno: 111 - Connection refused).
```
becomes
```
[W socket.cpp:634] The server socket on [localhost]:29501 is not yet listening (errno: 111 - Connection refused), will retry.
```
ghstack-source-id: 147716736
Test Plan: No behavioral change. Run the existing unit and integration tests.
Reviewed By: H-Huang
Differential Revision: D33792888
fbshipit-source-id: 79b287325945d0353c4568d84d1b52c820783cfc
(cherry picked from commit 9e5b627551fdf3bd6d06eb669883f9423d0999f1)