我在使用locust和python时得到HTTPError('502 Server Error: Bad Gateway for 'https:/myurl")。

问题描述 投票:0回答:1

在执行 locust 加载测试时,我面临着上述问题,我已经检查了我的应用程序洞察力没有错误。所以请帮助我如何解决找到这个问题的确切原因

    @task(1)
        def test(self):
            r = self.client.post("url",data=json.dumps(payload), headers=headers, catch_response=False)
            self.interrupt()
python load-testing locust
1个回答
0
投票

蝗虫能告诉你的也不多了:你请求的serverURL返回了一个502错误。你可以使用以下方法检查 locust 所运行的 URL 的具体内容 print(r.url) 詈詈 https://myurl 就像你在标题中说的那样,那是你的问题:)

© www.soinside.com 2019 - 2024. All rights reserved.