mirror of https://gitee.com/bigwinds/arangodb
Bug fix 3.3/issue 5429 (#5432)
This commit is contained in:
parent
7529d0bb36
commit
ff9cd74ceb
|
@ -1,6 +1,8 @@
|
|||
v3.3.10 (XXXX-XX-XX)
|
||||
--------------------
|
||||
|
||||
* fixe dissue #5429: Frequent 'updated local foxx repository' messages
|
||||
|
||||
* fixed issue #5252: Empty result if FULLTEXT() is used together with LIMIT offset
|
||||
|
||||
* fixed issue #5035: fixed a vulnerability issue within the web ui's index view
|
||||
|
|
|
@ -160,7 +160,7 @@ var updateFishbowlFromZip = function (filename) {
|
|||
}
|
||||
});
|
||||
|
||||
require('console').log('Updated local foxx repository with ' + toSave.length + ' service(s)');
|
||||
require('console').debug('Updated local foxx repository with ' + toSave.length + ' service(s)');
|
||||
}
|
||||
} catch (err) {
|
||||
if (tempPath !== undefined && tempPath !== '') {
|
||||
|
@ -328,7 +328,7 @@ var update = function () {
|
|||
var result = download(url, '', {
|
||||
method: 'get',
|
||||
followRedirects: true,
|
||||
timeout: 30
|
||||
timeout: 15
|
||||
}, filename);
|
||||
|
||||
if (result.code < 200 || result.code > 299) {
|
||||
|
|
Loading…
Reference in New Issue