Skip to content

Commit

Permalink
Move Jaeger generated code to opentelemetry dir
Browse files Browse the repository at this point in the history
  • Loading branch information
guilload committed Jul 15, 2023
1 parent 156a2c0 commit 08e35c3
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion quickwit/quickwit-proto/build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ fn main() -> Result<(), Box<dyn std::error::Error>> {
prost_config.type_attribute("Operation", "#[derive(Eq, Ord, PartialOrd)]");

tonic_build::configure()
.out_dir("src/")
.out_dir("src/jaeger")
.compile_with_config(
prost_config,
&protos,
Expand Down
4 changes: 2 additions & 2 deletions quickwit/quickwit-proto/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -39,11 +39,11 @@ pub mod metastore_api {

pub mod jaeger {
pub mod api_v2 {
include!("jaeger.api_v2.rs");
include!("jaeger/jaeger.api_v2.rs");
}
pub mod storage {
pub mod v1 {
include!("jaeger.storage.v1.rs");
include!("jaeger/jaeger.storage.v1.rs");
}
}
}
Expand Down

0 comments on commit 08e35c3

Please sign in to comment.