Merge pull request #8295 from weslien/patch-8294

Fix arangoDB connector
This commit is contained in:
Martin McKeaveney 2022-10-20 22:01:07 +01:00 committed by GitHub
commit 975134caea
1 changed files with 2 additions and 0 deletions

View File

@ -62,6 +62,8 @@ class ArangoDBIntegration implements IntegrationBase {
constructor(config: ArangodbConfig) {
const newConfig = {
url: config.url,
databaseName: config.databaseName,
auth: {
username: config.username,
password: config.password,