Unverified Commit e6ad5bc5 authored by milesial's avatar milesial Committed by GitHub
Browse files

fix: incremental build for dynamo-llm (#5601)


Signed-off-by: default avatarAlexandre Milesi <milesial@users.noreply.github.com>
parent 2da403e3
...@@ -50,7 +50,7 @@ fn main() -> Result<(), Box<dyn std::error::Error>> { ...@@ -50,7 +50,7 @@ fn main() -> Result<(), Box<dyn std::error::Error>> {
fn build_protos() -> Result<(), Box<dyn std::error::Error>> { fn build_protos() -> Result<(), Box<dyn std::error::Error>> {
tonic_build::configure() tonic_build::configure()
.type_attribute(".", "#[derive(serde::Serialize,serde::Deserialize)]") .type_attribute(".", "#[derive(serde::Serialize,serde::Deserialize)]")
.compile_protos(&["kserve.proto"], &["src/grpc/protos"])?; .compile_protos(&["src/grpc/protos/kserve.proto"], &["src/grpc/protos"])?;
Ok(()) Ok(())
} }
......
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