Update app.py
Browse files
app.py
CHANGED
@@ -12,7 +12,7 @@ config.max_connection_pool_size = 10
|
|
12 |
connection_pool = ConnectionPool()
|
13 |
|
14 |
# Nebula Graph に接続
|
15 |
-
if not connection_pool.init([(
|
16 |
print("接続に失敗しました")
|
17 |
exit(1)
|
18 |
|
|
|
12 |
connection_pool = ConnectionPool()
|
13 |
|
14 |
# Nebula Graph に接続
|
15 |
+
if not connection_pool.init([('127.0.0.1', 9669)], config):
|
16 |
print("接続に失敗しました")
|
17 |
exit(1)
|
18 |
|