diff --git a/src/meta_plugin/binary.rs b/src/meta_plugin/binary.rs index a64a7be..5b560fe 100644 --- a/src/meta_plugin/binary.rs +++ b/src/meta_plugin/binary.rs @@ -85,11 +85,6 @@ impl MetaPlugin for BinaryMetaPlugin { if let Some(size) = max_buffer_size.as_u64() { self.max_buffer_size = size as usize; } - } else if let Some(max_buffer_size) = options.get("max_buffer") { - // Also support "max_buffer" for backward compatibility - if let Some(size) = max_buffer_size.as_u64() { - self.max_buffer_size = size as usize; - } } if let Some(outputs) = options.get("outputs") {