* EepGet: Don't retry after a MalformedURLException

This commit is contained in:
zzz
2010-03-29 21:12:04 +00:00
parent 83d24fa90d
commit 7671550a9f

View File

@@ -455,6 +455,8 @@ public class EepGet {
_listeners.get(i).attemptFailed(_url, _bytesTransferred, _bytesRemaining, _currentAttempt, _numRetries, ioe);
if (_log.shouldLog(Log.WARN))
_log.warn("ERR: doFetch failed " + ioe);
if (ioe instanceof MalformedURLException)
_keepFetching = false;
} finally {
if (_out != null) {
try {