Close the connection pool to Supabase.
()
| 111 | |
| 112 | |
| 113 | async def close_supabase_pool() -> None: |
| 114 | """Close the connection pool to Supabase.""" |
| 115 | global _supabase_pool |
| 116 | if _supabase_pool is not None: |
| 117 | await _supabase_pool.close() |
| 118 | _supabase_pool = None |
| 119 | |
| 120 | |
| 121 | class SupabaseExporterMeta(type): |
no test coverage detected
searching dependent graphs…