1
0
Fork 0

Merge branch 'devel' of github.com:triAGENS/ArangoDB into devel

This commit is contained in:
Willi Goesgens 2015-01-14 17:20:27 +01:00
commit 3a1a0b5c29
4 changed files with 5 additions and 2 deletions

View File

@ -7,6 +7,8 @@ v2.5.0 (XXXX-XX-XX)
v2.4.1 (XXXX-XX-XX)
-------------------
* fixed invalid result of HTTP REST API method `/_admin/foxx/rescan`
* fixed possible segmentation fault when passing a Buffer object into a V8 function
as a parameter

View File

@ -447,6 +447,7 @@ SHELL_COMMON = \
@top_srcdir@/js/common/tests/shell-index.js \
@top_srcdir@/js/common/tests/shell-index-geo.js \
@top_srcdir@/js/common/tests/shell-cap-constraint.js \
@top_srcdir@/js/common/tests/shell-cap-constraint-timecritical.js \
@top_srcdir@/js/common/tests/shell-unique-constraint.js \
@top_srcdir@/js/common/tests/shell-hash-index.js \
@top_srcdir@/js/common/tests/shell-fulltext.js \

View File

@ -155,7 +155,7 @@ actions.defineHttp({
body: true,
callback: function () {
foxxManager.scanAppDirectory();
return true;
return { };
}
})
});

View File

@ -152,7 +152,7 @@ BaseMiddleware = function () {
///
/// `request.requestParts()`
///
/// Returns a list containing the individual parts of a multi-part request.
/// Returns an array containing the individual parts of a multi-part request.
/// Each part contains a `headers` attribute with all headers of the part,
/// and a `data` attribute with the content of the part in a Buffer object.
/// If the request is not a multi-part request, this function will throw an