mirror of https://gitee.com/bigwinds/arangodb
Merge branch 'devel' of github.com:arangodb/arangodb into devel
This commit is contained in:
commit
c531a8f96e
|
@ -0,0 +1,6 @@
|
|||
!CHAPTER Features and Improvements
|
||||
|
||||
The following list shows in detail which features have been added or improved in
|
||||
ArangoDB 3.1. ArangoDB 3.1 also contains several bugfixes that are not listed
|
||||
here.
|
||||
|
|
@ -0,0 +1,5 @@
|
|||
!CHAPTER Incompatible changes in ArangoDB 3.1
|
||||
|
||||
It is recommended to check the following list of incompatible changes **before**
|
||||
upgrading to ArangoDB 3.1, and adjust any client programs if necessary.
|
||||
|
|
@ -280,7 +280,6 @@ bool Constituent::vote(term_t term, std::string id, index_t prevLogIndex,
|
|||
TRI_ASSERT(_vocbase);
|
||||
|
||||
term_t t = 0;
|
||||
std::string lid;
|
||||
|
||||
MUTEX_LOCKER(guard, _castLock);
|
||||
|
||||
|
|
|
@ -97,7 +97,6 @@ Syncer::Syncer(TRI_vocbase_t* vocbase,
|
|||
|
||||
std::string username = _configuration._username;
|
||||
std::string password = _configuration._password;
|
||||
std::string jwt = _configuration._jwt;
|
||||
|
||||
if (!username.empty()) {
|
||||
_client->setUserNamePassword("/", username, password);
|
||||
|
|
|
@ -107,7 +107,7 @@ void SslServerFeature::prepare() {
|
|||
}
|
||||
|
||||
void SslServerFeature::unprepare() {
|
||||
LOG(INFO) << "unpreparing ssl: " << stringifySslOptions(_sslOptions);
|
||||
LOG(TRACE) << "unpreparing ssl: " << stringifySslOptions(_sslOptions);
|
||||
}
|
||||
|
||||
namespace {
|
||||
|
|
Loading…
Reference in New Issue