Update git submodules
authorJose Lausuch <jose.lausuch@ericsson.com>
Tue, 27 Jun 2017 13:37:17 +0000 (13:37 +0000)
committerGerrit Code Review <gerrit@opnfv.org>
Tue, 27 Jun 2017 13:37:17 +0000 (13:37 +0000)
commit8be513dd84b77d8207c17157a2c1d8420626e399
tree0429ccd4ce22d339b0432946312c616534f2ab35
parenta2daeb561725c250269f811adb83d033c33a913c
Update git submodules

* Update docs/submodules/releng from branch 'master'
  - Merge "bugfix: pagination crash due to memory limitation"
  - bugfix: pagination crash due to memory limitation

    MongoDB sorts the results in memory, and the default mem limitation is
    32M, if the sort operation consumes more than that it will return an
    error:
    OperationFailure: Executor error during find command: OperationFailed
    Sort operation used more than the maximum 33554432 bytes of RAM. Add an
    index, or specify a smaller limit.

    To solve this problem, here we leverage aggregate() and
    allowDiskUse=True, it is said will not be limited by memory

    Change-Id: Id698ad1d02912e8b350a33a926fcccc390814fcc
Signed-off-by: SerenaFeng <feng.xiaowei@zte.com.cn>
docs/submodules/releng