skipping the cdbmgmtprodby dts jobs

This commit is contained in:
Bikram Choudhury
2026-01-04 17:51:04 +05:30
parent 9f819d9043
commit bae219a98e

View File

@@ -43,6 +43,13 @@ export const getDataTransferJobs = async (
dataTransferJobs = [...dataTransferJobs, ...(dataTransferFeeds?.value || [])];
while (dataTransferFeeds?.nextLink) {
try {
if (dataTransferFeeds?.nextLink.includes("cdbmgmtprodby.documents.azure.com:450")) {
console.warn(
"Skipping fetching next page of data transfer jobs due to invalid nextLink:",
dataTransferFeeds.nextLink,
);
break;
}
const nextResponse = await window.fetch(dataTransferFeeds.nextLink, {
headers: {
Authorization: userContext.authorizationToken,