Commit d807ec6c authored by groot's avatar groot
Browse files

update message


Former-commit-id: 502b2e258fe66e85f15651f176751ca29a4db1a3
parent 016ee365
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -475,8 +475,8 @@ Config::CheckDBConfigInsertBufferSize(const std::string& value) {
        uint64_t total_mem = 0, free_mem = 0;
        CommonUtil::GetSystemMemInfo(total_mem, free_mem);
        if (buffer_size >= total_mem) {
            std::string msg =
                "Invalid insert buffer size: " + value + ". Possible reason: insert buffer size exceeds system memory.";
            std::string msg = "Invalid insert buffer size: " + value +
                              ". Possible reason: db_config.insert_buffer_size exceeds system memory.";
            return Status(SERVER_INVALID_ARGUMENT, msg);
        }
    }