This is an automated email from the ASF dual-hosted git repository. dockerzhang pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/inlong.git
The following commit(s) were added to refs/heads/master by this push: new 70ca644e52 [INLONG-10894][SDK] Remove the useless interface 'AddBid' exposed in pybind binding code (#10895) 70ca644e52 is described below commit 70ca644e5209fe2fb8f0b507add1dfc56497284c Author: yfsn666 <61183968+yfsn...@users.noreply.github.com> AuthorDate: Mon Aug 26 21:53:51 2024 +0800 [INLONG-10894][SDK] Remove the useless interface 'AddBid' exposed in pybind binding code (#10895) --- inlong-sdk/dataproxy-sdk-twins/dataproxy-sdk-python/inlong_dataproxy.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/inlong-sdk/dataproxy-sdk-twins/dataproxy-sdk-python/inlong_dataproxy.cpp b/inlong-sdk/dataproxy-sdk-twins/dataproxy-sdk-python/inlong_dataproxy.cpp index 2fc5eeee83..07bf79613c 100644 --- a/inlong-sdk/dataproxy-sdk-twins/dataproxy-sdk-python/inlong_dataproxy.cpp +++ b/inlong-sdk/dataproxy-sdk-twins/dataproxy-sdk-python/inlong_dataproxy.cpp @@ -63,7 +63,6 @@ PYBIND11_MODULE(inlong_dataproxy, m) { int result = self.InitApi(config_path); return result; }) - .def("add_bid", &inlong::InLongApi::AddBid) .def("send", [](inlong::InLongApi& self, const char* groupId, const char* streamId, const char* msg, int32_t msgLen, py::object pyCallback = py::none()) { if (!pyCallback.is(py::none())) { g_py_callbacks[UserCallBackBridge] = pyCallback.cast<py::function>();