Skip to content

Commit d3cc9f7

Browse files
committed
🐛 FIX: Try adding elasticsearch creds to Coldbox test app config
1 parent 53e1e84 commit d3cc9f7

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

config/Coldbox.cfc

+5-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,11 @@ component{
1111
"serverName" = getSystemSetting( "ELASTICSEARCH_HOST", "127.0.0.1" ),
1212
"serverPort" = getSystemSetting( "ELASTICSEARCH_PORT", "9200" )
1313
}
14-
]
14+
],
15+
"defaultCredentials" = {
16+
"username" : getSystemSetting( "ELASTICSEARCH_USERNAME", "" ),
17+
"password" : getSystemSetting( "ELASTICSEARCH_PASSWORD", "" )
18+
},
1519
}
1620
};
1721

0 commit comments

Comments
 (0)