diff --git a/ChangeLog b/ChangeLog index 3736d3d14..b18fec08d 100644 --- a/ChangeLog +++ b/ChangeLog @@ -54,7 +54,7 @@ incoming connection * added more detailed instrumentation of the disk I/O thread - + * expose set_alert_queue_size_limit to python binding * support dht nodes in magnet links * support 100 Continue HTTP responses * changed default choker behavior to use 8 unchoke slots (instead of being rate based) diff --git a/bindings/python/src/session.cpp b/bindings/python/src/session.cpp index a698fa982..0b9760a5d 100644 --- a/bindings/python/src/session.cpp +++ b/bindings/python/src/session.cpp @@ -359,6 +359,7 @@ void bind_session() .def("set_severity_level", allow_threads(&session::set_severity_level)) #endif .def("set_alert_mask", allow_threads(&session::set_alert_mask)) + .def("set_alert_queue_size_limit", allow_threads(&session::set_alert_queue_size_limit)) .def("pop_alert", allow_threads(&session::pop_alert)) .def("wait_for_alert", &wait_for_alert, return_internal_reference<>()) .def("add_extension", &add_extension)