Facing issue with workers

For Workes & Pages, what is the name of the domain?

api.reuz.in

What is the error number?

Not getting any error

What is the error message?

Code is just not executing code.

What is the issue or error you’re encountering

My code suddently not getting called and seems like code getting skipped to the parent code without executing child code.

What steps have you taken to resolve the issue?

I try to put logs everywhere, same code is getting executed by other API.

What are the steps to reproduce the issue?

I am not getting any error, it just skipping the code… Does anyone faced this issue?

Just to add I am making an API call ```

const response = await fetch(env.TELECRM_URL, {
                method: 'POST', // or 'POST' if you're sending data
                headers: {
                  'Content-Type': 'application/json',
                  'Authorization': 'Bearer '+env.TELECRM_TOKEN
                  // Add other headers as needed
                },
                body: JSON.stringify(leadData)
              });

In the below code I am getting only this log “IN CRM 0”

export async function updateLeadInCrm(leadData,env) {
    var retry = 3;
            while(retry>0) {
            try {
              console.log("IN CRM 0");
               const response = await fetch(env.TELECRM_URL, {
                method: 'POST', // or 'POST' if you're sending data
                headers: {
                  'Content-Type': 'application/json',
                  'Authorization': 'Bearer '+env.TELECRM_TOKEN
                  // Add other headers as needed
                },
                body: JSON.stringify(leadData)
              });
              console.log("IN CRM 2");
              retry = 0;
            } catch(e) {
              retry--;
              console.log("errror generating leads",e);
            }
          }
          console.log("IN CRM 3");
}