You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am trying to retrieve lakehouse tables metadata using the get_lakehouse_tables function from the sempy_labs library. However, I am encountering a ValueError indicating that the provided capacity Id is not valid but the get_lakehouse tables has no capacity Id parameter.
#lib/python3.10/site-packages/sempy_labs/directlake/_guardrails.py:66, in get_sku_size(workspace)
63 dfC_filt = dfC[dfC["Id"] == capacity_id]
65 if len(dfC_filt) == 0:
---> 66 raise ValueError(
67 f"{icons.red_dot} The '{capacity_id}' Id is not a valid capacity Id."
68 )
70 return dfC_filt["Sku"].iloc[0]
ValueError: 🔴 The '*************************' Id is not a valid capacity Id.
The text was updated successfully, but these errors were encountered:
I am trying to retrieve lakehouse tables metadata using the get_lakehouse_tables function from the sempy_labs library. However, I am encountering a ValueError indicating that the provided capacity Id is not valid but the get_lakehouse tables has no capacity Id parameter.
The text was updated successfully, but these errors were encountered: