Skip to content

Commit e516644

Browse files
committed
Fixed neo4j credentials
1 parent d9c44bf commit e516644

File tree

1 file changed

+5
-7
lines changed
  • ai-assistant/src/core/services/db

1 file changed

+5
-7
lines changed

ai-assistant/src/core/services/db/neo4j.ts

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -33,12 +33,12 @@ export class Neo4j implements IDB {
3333
// password: string
3434
) {
3535
this.http = http;
36-
// this.baseUrl = "http://neo4j:7474";
37-
// this.username = "neo4j";
38-
// this.password = "strongpasswordsafe123";
39-
this.baseUrl = "http://44.192.104.170:7474";
36+
this.baseUrl = "http://neo4j:7474";
4037
this.username = "neo4j";
41-
this.password = "individuals-societies-wools";
38+
this.password = "strongpasswordsafe123";
39+
// this.baseUrl = "http://44.192.104.170:7474";
40+
// this.username = "neo4j";
41+
// this.password = "individuals-societies-wools";
4242
}
4343

4444
private async sendRequest(
@@ -59,8 +59,6 @@ export class Neo4j implements IDB {
5959
data: data,
6060
});
6161

62-
console.log(res);
63-
6462
if (!res || ![200, 201].includes(res.statusCode) || !res.content) {
6563
return null;
6664
}

0 commit comments

Comments
 (0)