Update governance and trading DATABASE_URL to use IP address
Some checks failed
Cross-Node Transaction Testing / transaction-test (push) Successful in 11s
Deploy to Testnet / deploy-testnet (push) Successful in 1m24s
Deploy to Testnet / notify-deployment (push) Has been cancelled
Integration Tests / test-service-integration (push) Successful in 1m16s
Multi-Node Stress Testing / stress-test (push) Has been cancelled
Node Failover Simulation / failover-test (push) Has been cancelled
Python Tests / test-python (push) Has been cancelled
Security Scanning / security-scan (push) Has been cancelled

This commit is contained in:
aitbc
2026-05-02 10:17:55 +02:00
parent c80aa7c0c0
commit 62cf321da9
2 changed files with 2 additions and 2 deletions

View File

@@ -13,7 +13,7 @@ from aitbc import get_logger
logger = get_logger(__name__)
# Database URL from environment variable or default
DATABASE_URL = "postgresql+asyncpg://aitbc_governance:password@aitbc1:5432/aitbc_governance"
DATABASE_URL = "postgresql+asyncpg://aitbc_governance:password@10.1.223.40:5432/aitbc_governance"
# Create async engine
engine = create_async_engine(DATABASE_URL, echo=False)

View File

@@ -13,7 +13,7 @@ from aitbc import get_logger
logger = get_logger(__name__)
# Database URL from environment variable or default
DATABASE_URL = "postgresql+asyncpg://aitbc_trading:password@aitbc1:5432/aitbc_trading"
DATABASE_URL = "postgresql+asyncpg://aitbc_trading:password@10.1.223.40:5432/aitbc_trading"
# Create async engine
engine = create_async_engine(DATABASE_URL, echo=False)