Commit ff3d74ae authored by Dominik Charousset's avatar Dominik Charousset

Fix serialization of ack_batch

parent 857aba16
...@@ -173,7 +173,7 @@ template <class Inspector> ...@@ -173,7 +173,7 @@ template <class Inspector>
typename Inspector::result_type inspect(Inspector& f, typename Inspector::result_type inspect(Inspector& f,
upstream_msg::ack_batch& x) { upstream_msg::ack_batch& x) {
return f(meta::type_name("ack_batch"), x.new_capacity, x.desired_batch_size, return f(meta::type_name("ack_batch"), x.new_capacity, x.desired_batch_size,
x.acknowledged_id); x.acknowledged_id, x.max_capacity);
} }
/// @relates upstream_msg::drop /// @relates upstream_msg::drop
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment