File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ module.exports = {
15
15
let db_name = args . db_name || 'dev-db' ;
16
16
let url = args . url || 'http://localhost:8529' ;
17
17
let drop = args . drop || false ;
18
- disableDirectivesChecking = args . disableDirectivesChecking || false ;
18
+ disableDirectivesChecking = args . disableDirectivesChecking || true ;
19
19
disableEdgeValidation = args . disableEdgeValidation || false ;
20
20
db = new arangojs . Database ( { url : url } ) ;
21
21
Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ async function run(){
22
22
'db_name' : process . env . DB_NAME || 'spirit-db' ,
23
23
'url' : process . env . URL || 'http://localhost:8529' ,
24
24
'drop' : process . env . DROP === 'true' ,
25
- 'disableDirectivesChecking' : process . env . DISABLE_DIRECTIVES_CHECKING === 'true ' ,
25
+ // 'disableDirectivesChecking': process.env.DISABLE_DIRECTIVES_CHECKING === 'false ',
26
26
'disableEdgeValidation' : process . env . DISABLE_EDGE_VALIDATION === 'true'
27
27
} ;
28
28
await driver . init ( args ) ;
You can’t perform that action at this time.
0 commit comments