This is an automated email from the ASF dual-hosted git repository.
jgemignani pushed a commit to branch PG14
in repository https://gitbox.apache.org/repos/asf/age.git
The following commit(s) were added to refs/heads/PG14 by this push:
new 4e9e4036 Fix connection string in Python Driver (#1757) (#1760)
4e9e4036 is described below
commit 4e9e40366d37691b7ad71bbe2353577d0785850b
Author: Dehowe Feng <[email protected]>
AuthorDate: Thu Apr 18 23:08:14 2024 +0800
Fix connection string in Python Driver (#1757) (#1760)
Edited connection string to be more generic.
---
drivers/python/test_age_py.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/python/test_age_py.py b/drivers/python/test_age_py.py
index 1161fda8..8048844f 100644
--- a/drivers/python/test_age_py.py
+++ b/drivers/python/test_age_py.py
@@ -20,7 +20,7 @@ import decimal
import age
import argparse
-DSN = "host=localhost port=5432 dbname=postgres user=dehowefeng password=agens"
+DSN = "host=localhost port=5432 dbname=postgres user=postgres password=agens"
TEST_HOST = "localhost"
TEST_PORT = 5432
TEST_DB = "postgres"