mirror of https://gitee.com/bigwinds/arangodb
Merge branch 'devel' of github.com:triAGENS/ArangoDB into devel
This commit is contained in:
commit
3a1a0b5c29
|
@ -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
|
||||
|
||||
|
|
|
@ -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 \
|
||||
|
|
|
@ -155,7 +155,7 @@ actions.defineHttp({
|
|||
body: true,
|
||||
callback: function () {
|
||||
foxxManager.scanAppDirectory();
|
||||
return true;
|
||||
return { };
|
||||
}
|
||||
})
|
||||
});
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue