From b6d9fd69aee219c6feb8dc82d8ec34ee4275bfa0 Mon Sep 17 00:00:00 2001 From: tottoto Date: Fri, 6 Jan 2023 02:03:26 +0900 Subject: [PATCH] chore(reflection): Add file descriptor set generation (#1213) Co-authored-by: Lucio Franco --- tonic-reflection/tests/bootstrap.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/tonic-reflection/tests/bootstrap.rs b/tonic-reflection/tests/bootstrap.rs index 66ee998..0ec200d 100644 --- a/tonic-reflection/tests/bootstrap.rs +++ b/tonic-reflection/tests/bootstrap.rs @@ -13,6 +13,7 @@ fn bootstrap() { .build_client(true) .build_server(true) .build_transport(false) + .file_descriptor_set_path(out_dir.join("reflection_v1alpha1.bin")) .out_dir(&out_dir) .compile(iface_files, dirs) .unwrap();