I have an issue creating a new list on a particular SharePoint site. When I run the flow, the API actually successfully creates the list called "Test" on the problematic site as I could see the list there, but the same HTTP request action just keeps on running and trying to create the same list that it has created over and over again, which leads to a JSON message saying "A list, survey, discussion board, or document library with the specified title already exists in this Web site. Please choose another title.\r\nclientRequestId: 2f84732e-7ea8-4d49-91ec-5bbdd98901f3\r\nserviceRequestId: 010ccc9f-c0b2-0000-9612-a1b9904794c4"
Here's a screenshot of the flow:

The output after the HTTP request failed to run after 2 retries occurred.
Body
{
"error": {
"code": 502,
"source": "asia-001.azure-apim.net",
"clientRequestId": "2f84732e-7ea8-4d49-91ec-5bbdd98901f3",
"message": "BadGateway",
"innerError": {
"status": 502,
"message": "A list, survey, discussion board, or document library with the specified title already exists in this Web site. Please choose another title.\r\nclientRequestId: 2f84732e-7ea8-4d49-91ec-5bbdd98901f3\r\nserviceRequestId: 010ccc9f-c0b2-0000-9612-a1b9904794c4",
"source": "https://xxxxx.sharepoint.com/sites/xxxxx/_api/web/lists",
"errors": [
"-2130575342",
"Microsoft.SharePoint.SPException"
]
}
}
}
Header
{
"Pragma": "no-cache",
"x-ms-request-id": "010ccc9f-c0b2-0000-9612-a1b9904794c4",
"Strict-Transport-Security": "max-age=31536000; includeSubDomains",
"X-Content-Type-Options": "nosniff",
"X-Frame-Options": "DENY",
"Cache-Control": "no-store, no-cache",
"Set-Cookie": "ARRAffinity=07abb3f274a938ebb08283001fd69ce1b96d646206f80f6a9e686683a0b031f8;Path=/;HttpOnly;Secure;Domain=sharepointonline-sea.azconn-sea.p.azurewebsites.net,ARRAffinitySameSite=07abb3f274a938ebb08283001fd69ce1b96d646206f80f6a9e686683a0b031f8;Path=/;HttpOnly;SameSite=None;Secure;Domain=sharepointonline-sea.azconn-sea.p.azurewebsites.net",
"Timing-Allow-Origin": "*",
"x-ms-apihub-cached-response": "true",
"Date": "Thu, 27 May 2021 16:05:56 GMT",
"Content-Length": "675",
"Content-Type": "application/json",
"Expires": "-1"
}
Please note that the same flow works perfectly on a different SharePoint site. Could my company have made some setting changes for the problematic site that led to the problem? Because I was able to run this flow on the problematic page the day before yesterday. Please assist me on this.