我们突然开始在Bitbucket中看到基于API的PR创建请求的超时。我能够在UI中创建一个PR,但是任何通过API这样做的尝试都会导致504网关超时。
我们是免费的比特桶,所以我不能向他们提交问题.这里还有其他Bitbucket用户正在经历这种情况吗?
请求
端点:https://api.bitbucket.org/2.0/repositories/{workspace}/{repo-slug}/pullrequests
{
"title": "Staging merge to Release Candidate",
"source": {
"branch": {
"name": "staging"
}
},
"destination": {
"branch": {
"name": "release-candidate"
}
}
}响应
<html>
<head>
<title>504 Gateway Time-out</title>
</head>
<body>
<center>
<h1>504 Gateway Time-out</h1>
</center>
</body>
</html>发布于 2022-07-13 08:07:26
当两个分支之间没有任何代码更改时,bitbucket API端点https://api.bitbucket.org/2.0/repositories/{workspace}/{repo-slug}/pullrequests当前返回504网关超时。
来源:https://jira.atlassian.com/browse/BCLOUD-22009
您在分支staging和release-candidate之间有更改吗?
https://stackoverflow.com/questions/72942940
复制相似问题