File tree Expand file tree Collapse file tree 1 file changed +5
-7
lines changed
ai-assistant/src/core/services/db Expand file tree Collapse file tree 1 file changed +5
-7
lines changed Original file line number Diff line number Diff 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 }
You can’t perform that action at this time.
0 commit comments