From 43e0be21a8b10093a61209a802829dceab59c845 Mon Sep 17 00:00:00 2001 From: mibe Date: Fri, 4 Oct 2024 15:45:49 +0100 Subject: [PATCH] #75 Fixed the bucketfs_location tests --- .../python_extension_common/connections/bucketfs_location.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/exasol/python_extension_common/connections/bucketfs_location.py b/exasol/python_extension_common/connections/bucketfs_location.py index 7f6fed3..19da592 100644 --- a/exasol/python_extension_common/connections/bucketfs_location.py +++ b/exasol/python_extension_common/connections/bucketfs_location.py @@ -114,7 +114,7 @@ class ConnectionInfo: This is not a connection object. It's just a structure to keep together the data required for creating a BucketFs connection object. Useful for testing. """ - to: str + address: str user: str password: str @@ -130,7 +130,7 @@ def write_bucketfs_conn_object(pyexasol_connection: pyexasol.ExaConnection, conn_obj: ConnectionInfo) -> None: query = (f"CREATE OR REPLACE CONNECTION {conn_name} " - f"TO '{conn_obj.to}' " + f"TO '{conn_obj.address}' " f"USER '{conn_obj.user}' " f"IDENTIFIED BY '{conn_obj.password}'") pyexasol_connection.execute(query)