don't format generated code in tonic-health (#501)

This commit is contained in:
Akhil Velagapudi
2021-01-05 16:01:45 -05:00
committed by GitHub
parent fc86563b36
commit 032302e9d0
+1 -1
View File
@@ -2,7 +2,7 @@ fn main() -> Result<(), Box<dyn std::error::Error>> {
tonic_build::configure()
.build_server(true)
.build_client(false)
.format(true)
.format(false)
.compile(&["proto/health.proto"], &["proto/"])?;
Ok(())