fix: resolve PIPESIZE redefinition and unused variable warnings

Co-authored-by: aider (openai/andrew/openrouter/deepseek/deepseek-chat-v3.1) <aider@aider.chat>
This commit is contained in:
Andrew Phillips
2025-08-25 21:31:25 -03:00
parent 801445a07c
commit 58b7cba55a
2 changed files with 2 additions and 6 deletions

View File

@@ -3,6 +3,3 @@ pub mod status;
/// Standard buffer size for I/O operations (8KB) /// Standard buffer size for I/O operations (8KB)
pub const PIPESIZE: usize = 8192; pub const PIPESIZE: usize = 8192;
// Re-export for easy access
pub use self::PIPESIZE;

View File

@@ -26,8 +26,8 @@ impl AsyncItemService {
} }
pub async fn get_item(&self, id: i64) -> Result<ItemWithMeta, CoreError> { pub async fn get_item(&self, id: i64) -> Result<ItemWithMeta, CoreError> {
let db = self.db.clone(); let _db = self.db.clone();
let item_service = self.item_service.clone(); let _item_service = self.item_service.clone();
tokio::task::spawn_blocking(move || { tokio::task::spawn_blocking(move || {
let conn = db.blocking_lock(); let conn = db.blocking_lock();
@@ -193,7 +193,6 @@ impl AsyncItemService {
// Convert the reader into an async stream manually // Convert the reader into an async stream manually
// Since ReaderStream requires AsyncRead, we'll create our own implementation // Since ReaderStream requires AsyncRead, we'll create our own implementation
use tokio_stream::StreamExt;
use tokio_util::bytes::Bytes; use tokio_util::bytes::Bytes;
// Create a channel to stream data between the blocking thread and async runtime // Create a channel to stream data between the blocking thread and async runtime