Commit 6c314348 authored by 余昆's avatar 余昆 Committed by 李盛俊
Browse files

Fix webserver readme for 0.11.0 (#3765)



* Fix WebServer README.md

Signed-off-by: default avatarfishpenguin <kun.yu@zilliz.com>

* Add changelog

Signed-off-by: default avatarfishpenguin <kun.yu@zilliz.com>

* Fix cpplint

Signed-off-by: default avatarfishpenguin <kun.yu@zilliz.com>
Signed-off-by: default avatarshengjun.li <shengjun.li@zilliz.com>
parent caa251f3
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -47,6 +47,7 @@ Please mark all changes in change log and use the issue from GitHub
-   \#3672 0.11.0 docker image is 200M larger due to the un-expected installation of openblas
-   \#3689 Client get stuck if drop collection during creating index
-   \#3734 GET_PAGE_ENTITY sometimes failed in test_web
-   \#3741 Inconsistent parameter names

## Feature
-   \#2319 Redo metadata to support MVCC
+225 −259

File changed.

Preview size limit exceeded, changes collapsed.

+2 −1
Original line number Diff line number Diff line
@@ -501,7 +501,8 @@ WebRequestHandler::Compact(const nlohmann::json& json, std::string& result_str)

    auto name = collection_name.get<std::string>();

    double compact_threshold = 0.1;  // compact trigger threshold: delete_counts/segment_counts
    double compact_threshold =
        json["threshold"].get<double>();  // compact trigger threshold: delete_counts/segment_counts
    auto status = req_handler_.Compact(context_ptr_, name, compact_threshold);

    if (status.ok()) {