From 4c35b22626eb17b3baa2352864ca188f6149e2bb Mon Sep 17 00:00:00 2001 From: Eric Seppanen Date: Tue, 18 May 2021 14:53:27 -0700 Subject: [PATCH] Remove FIXME about buffer pools If I'm not going to do anything about it soon, it's not worth keeping this comment. --- walkeeper/src/pq_protocol.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/walkeeper/src/pq_protocol.rs b/walkeeper/src/pq_protocol.rs index 0a9ca667e8..bad7a7eeca 100644 --- a/walkeeper/src/pq_protocol.rs +++ b/walkeeper/src/pq_protocol.rs @@ -74,7 +74,6 @@ impl FeStartupMessage { _ => StartupRequestCode::Normal, }; - // FIXME: A buffer pool would be nice, to avoid zeroing the buffer. let params_len = len - 8; let mut params_bytes = vec![0u8; params_len]; reader.read_exact(params_bytes.as_mut())?;