所以基本上我正在使用有时在其中输入URL并给我一个错误的错误请求:
('Connection aborted.', RemoteDisconnected('Remote end closed connection without response',))
当我再次执行新请求或现在正在睡眠时,这很好:
except Exception as e:
logger.error(e)
randomtime = random.randint(1,5)
logger.warn('ERROR - Retrying again website %s, retrying in %d secs' % (url, randomtime))
time.sleep(randomtime)
continue
我想做的是,每当此错误再次出现为ERROR时,我只是想基本地“跳过”它,这意味着它不应该给我打印出来,但是如果出现另一个不是该错误的错误,
('Connection aborted.', RemoteDisconnected('Remote end closed connection without response',))
那么它应该打印错误。
我需要做些什么来使其打印其他错误,而只是继续以中止连接而不打印它呢?
幕布斯7119047
30秒到达战场
HUWWW
相关分类