Register denali on yellowstone, handle read requests.

This commit is contained in:
Drew Galbraith 2025-02-01 13:09:42 -08:00
parent a5cdd23f0b
commit 6f0dfa8719
6 changed files with 56 additions and 22 deletions

View file

@ -32,7 +32,7 @@ impl AsyncDenaliServerHandler for DenaliServerImpl {
})
}
async fn read_many(&self, req: ReadManyRequest) -> Result<ReadResponse, ZError> {
async fn read_many(&self, _req: ReadManyRequest) -> Result<ReadResponse, ZError> {
Err(ZError::UNIMPLEMENTED)
}
}