gpt4 book ai didi

python - For While 循环一直运行

转载 作者:太空宇宙 更新时间:2023-11-04 04:22:21 25 4
gpt4 key购买 nike

当 Google Compute Engine 实例(使用 Container-Optimized OS 镜像)启动并且 dockerized 应用程序运行时,下面的脚本应该将数据发送到 url。不幸的是,即使它无法发布数据,应用程序运行时也会收到数据。

输出是:

('Error', ConnectionError(MaxRetryError("HTTPConnectionPool(host='34.7.8.8', port=12345): Max retries exceeded with url: /didi.json (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused',))",),))

它来自 GCE 吗?

这是python代码:

for i in range(0,100):
while True:
try:
response = requests.post('http://%s:12345/didi.json' % ip_of_instance, data=data)
except requests.exceptions.RequestException as err:
print ("Error",err)
time.sleep(2)
continue
break

编辑 - 这是发布请求的参数:

data = {
'url': 'www.website.com',
'project': 'webCrawl',
'spider': 'indexer',
'setting': 'ELASTICSEARCH_SERVERS=92.xx.xx.xx',
'protocol': 'https',
'scraper': 'light'
}

最佳答案

我看到的是你正在使用一个 while true 循环,当它超过最大重试次数时你会收到一个错误,因为你被服务器禁止了,但这种状态不会永远持续下去,当禁止被移除时你开始获取更多数据,因为它仍在运行。

如果我的理论不正确,你可以看看这个其他线程。

Max retries exceeded with URL

关于python - For While 循环一直运行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54246486/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com