You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Traceback (most recent call last):
File "./test_multiping.py", line 4, in <module>
responses, no_responses = multi_ping(["no-such-host", "also-this-doesnt-exist"], timeout=2, retry=0, ignore_lookup_errors=True)
File "/usr/local/lib/python2.7/dist-packages/multiping/__init__.py", line 485, in multi_ping
single_results, no_results = mp.receive(retry_timeout)
File "/usr/local/lib/python2.7/dist-packages/multiping/__init__.py", line 376, in receive
raise MultiPingError("No requests have been sent, yet.")
multiping.MultiPingError: No requests have been sent, yet.
The correct behavior would be to return the failing host names in the no_response array.
The text was updated successfully, but these errors were encountered:
If the list of host names contains only addresses that cannot be resolved, and
ignore_lookup_errors
is True, multi_ping fails.The correct behavior would be to return the failing host names in the no_response array.
The text was updated successfully, but these errors were encountered: