aboutsummaryrefslogtreecommitdiff
path: root/weed/filer/arangodb
diff options
context:
space:
mode:
authora <a@tuxpa.in>2022-04-01 14:09:25 -0500
committera <a@tuxpa.in>2022-04-01 14:09:25 -0500
commit7e925175715c57b49552a94d25d1d3dc40f1d881 (patch)
tree42d4e6c4d46159edff9e53989ba447c45adb23f4 /weed/filer/arangodb
parent549e341c6f667dfd9798893246b4c23d0be5567a (diff)
downloadseaweedfs-7e925175715c57b49552a94d25d1d3dc40f1d881.tar.xz
seaweedfs-7e925175715c57b49552a94d25d1d3dc40f1d881.zip
change user and pass to username and password
Diffstat (limited to 'weed/filer/arangodb')
-rw-r--r--weed/filer/arangodb/arangodb_store.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/weed/filer/arangodb/arangodb_store.go b/weed/filer/arangodb/arangodb_store.go
index 27ed9132b..9fd1fffb3 100644
--- a/weed/filer/arangodb/arangodb_store.go
+++ b/weed/filer/arangodb/arangodb_store.go
@@ -59,8 +59,8 @@ func (store *ArangodbStore) Initialize(configuration util.Configuration, prefix
store.buckets = make(map[string]driver.Collection, 3)
store.databaseName = configuration.GetString(prefix + "db_name")
return store.connection(configuration.GetStringSlice(prefix+"servers"),
- configuration.GetString(prefix+"user"),
- configuration.GetString(prefix+"pass"),
+ configuration.GetString(prefix+"username"),
+ configuration.GetString(prefix+"password"),
configuration.GetBool(prefix+"insecure_skip_verify"),
)
}