1
0
Fork 0

Bug fix 3.3/issue 5429 (#5432)

This commit is contained in:
Jan 2018-05-23 11:38:18 +02:00 committed by GitHub
parent 7529d0bb36
commit ff9cd74ceb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 2 deletions

View File

@ -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

View File

@ -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) {