1
0
Fork 0

issue #1521: Can't dump/restore with user and password

Conflicts:
	CHANGELOG
This commit is contained in:
jsteemann 2015-10-06 21:31:57 +02:00
parent ea44c7710c
commit d20c99a5da
2 changed files with 14 additions and 4 deletions

View File

@ -1,5 +1,5 @@
v2.7.0 (XXXX-XX-XX)
-------------------
v2.7.0-rc3 (2015-10-05)
-----------------------
* fixed replication with a 2.6 replication configuration and issues with a 2.6 master
@ -13,6 +13,10 @@ v2.7.0 (XXXX-XX-XX)
read-access a collection that was not explicitly declared in the *collections*
array of the transaction.
* added "special" password ARANGODB_DEFAULT_ROOT_PASSWORD. If you pass
ARANGODB_DEFAULT_ROOT_PASSWORD as password, it will read the password
from the environment variable ARANGODB_DEFAULT_ROOT_PASSWORD
v2.7.0-rc2 (2015-09-22)
-----------------------
@ -469,7 +473,13 @@ v2.7.0-rc1 (2015-09-17)
The "Applications" tab in the web interfaces has been renamed to "Services".
v2.6.9 (XXXX-XX-XX)
v2.6.10 (XXXX-XX-XX)
--------------------
* issue #1521: Can't dump/restore with user and password
v2.6.9 (2015-09-29)
-------------------
* added "special" password ARANGODB_DEFAULT_ROOT_PASSWORD. If you pass

View File

@ -317,7 +317,7 @@ static int TryCreateDatabase (std::string const& name) {
triagens::basics::Json user(triagens::basics::Json::Object);
user("username", triagens::basics::Json(BaseClient.username()));
user("passwrd", triagens::basics::Json(BaseClient.password()));
user("passwd", triagens::basics::Json(BaseClient.password()));
triagens::basics::Json users(triagens::basics::Json::Array);
users.add(user);