File tree Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change 11** /.DS_Store
22.env
3+ .idea
34.venv /
4- __pycache__ /
5+ __pycache__ /
Original file line number Diff line number Diff line change @@ -233,7 +233,7 @@ async def run(connection_string: str | None):
233233 print (f"Error fetching extensions: { e } " )
234234
235235 # Find a schema with tables to test table resources
236- for schema_idx , schema in enumerate (schemas_data [:3 ]):
236+ for schema_idx , schema in enumerate (schemas_data [:10 ]):
237237 schema_name = schema .get ('schema_name' )
238238
239239 print (f"\n Testing tables for schema '{ schema_name } '..." )
@@ -292,7 +292,7 @@ async def run(connection_string: str | None):
292292 break
293293
294294 # Test disconnect tool if available
295- break # Exit schema loop once we've found a table
295+ # break # Exit schema loop once we've found a table
296296 except json .JSONDecodeError :
297297 print (f"Error parsing schemas: { content_item .text [:100 ]} " )
298298
You can’t perform that action at this time.
0 commit comments