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 6bef9ff commit f7339daCopy full SHA for f7339da
svc/migrater.ts
@@ -4,8 +4,9 @@ import redis from '../store/redis';
4
import scyllaDriver from 'cassandra-driver';
5
import url from 'url';
6
7
+const SCYLLA_URL = '';
8
const scylla = new scyllaDriver.Client({
- contactPoints: [url.parse(config.SCYLLA_URL, false).host ?? ''],
9
+ contactPoints: [url.parse(SCYLLA_URL, false).host ?? ''],
10
localDataCenter: 'datacenter1',
11
keyspace: 'yasp',
12
});
0 commit comments