From 762d1ef15d6e454f5fa564c6e2313cc8cfef8457 Mon Sep 17 00:00:00 2001 From: Yotam Perlitz Date: Fri, 14 Feb 2025 12:26:06 +0100 Subject: [PATCH] fix typo --- src/unitxt/db_utils.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/unitxt/db_utils.py b/src/unitxt/db_utils.py index 00a600da3c..0b48440da5 100644 --- a/src/unitxt/db_utils.py +++ b/src/unitxt/db_utils.py @@ -288,11 +288,11 @@ def get_table_schema( self, ) -> str: """Retrieves the schema of a database.""" - cur_api_url = f"{self.api_url}/datasource/{self.database_id}" + cur_api_url = f"{self.api_url}/datasources/{self.database_id}" response = requests.get( cur_api_url, headers=self.headers, - verify=True, + verify=False, timeout=self.timeout, ) if response.status_code == 200: