Update dataverse-python-agentic-workflows.instructions.md

LogicalName is the key to match against
This commit is contained in:
AIAlchemyForge
2026-01-08 17:17:20 +13:00
committed by GitHub
parent e496ef1b9b
commit d00847a867

View File

@@ -485,7 +485,7 @@ class SimpleDataAgent:
"""Agent function: Check table health."""
try:
tables = self.client.list_tables()
matching = [t for t in tables if t['table_logical_name'] == table_name]
matching = [t for t in tables if t['LogicalName'] == table_name]
if not matching:
return {"status": "error", "message": f"Table {table_name} not found"}