Getting error: "Asynchronous Query library internal error...."
As per client, they're running a code that worked before but suddenly they're getting this error. Another thing, it seems error is intermittent. Sometimes it works sometimes it won't.
They're using the following:
df = ld.get_data(
universe=instrumento,
fields=requested_fields,
parameters=params,
)
fields:[
"TR.PortfolioConstituentName",
"TR.PortfolioWeight",
]
params = {"SDate": date, "Curn": "USD", "CH": "Fd", "RH": "IN"}
I am just downloading Constituents Name and PortfolioWeight for a given portfolio, for example IVV ETF, using LIST(35557137) as universe
Sample date is yesterday.
I tried downloading it on excel add in with sample formula =@RDP.Data("PORTFOLIO(35557137)","TR.PortfolioConstituentName;TR.PortfolioWeight","SDate=2026-08-30 CH=Fd RH=IN") and it did work with no error message.