We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 36f72a8 commit 37ce781Copy full SHA for 37ce781
1 file changed
iotdb-client/client-py/tests/integration/sqlalchemy/test_dialect.py
@@ -23,6 +23,7 @@
23
from sqlalchemy.orm import Session
24
from sqlalchemy.sql import text
25
from tests.integration.iotdb_container import IoTDBContainer
26
+from urllib.parse import quote_plus as urlquote
27
28
final_flag = True
29
failed_count = 0
@@ -43,10 +44,11 @@ def print_message(message):
43
44
45
46
def test_dialect():
47
+ password = urlquote("IoTDB@2017")
48
with IoTDBContainer("iotdb:dev") as db:
49
db: IoTDBContainer
50
url = (
- "iotdb://root:root@"
51
+ "iotdb://root:" + password + "@"
52
+ db.get_container_host_ip()
53
+ ":"
54
+ db.get_exposed_port(6667)
0 commit comments