fix: remove port from cassandra

This commit is contained in:
Nybkox
2025-01-28 17:28:24 +01:00
parent cf8a104183
commit 3d23a13c34
2 changed files with 2 additions and 4 deletions

View File

@@ -14,10 +14,8 @@ const driver = {
...driverBase,
analyserClass: Analyser,
// creating connection
async connect({ server, port, user, password, database, localDataCenter, useDatabaseUrl, databaseUrl }) {
console.log('#conn', localDataCenter);
async connect({ server, user, password, database, localDataCenter, useDatabaseUrl, databaseUrl }) {
const client = new cassandra.Client({
// port,
// user,
// password,
contactPoints: server.split(','),