From 39f1e6640f40dae9b08912cf766ab763426bf741 Mon Sep 17 00:00:00 2001 From: Andrew Chen Date: Mon, 23 Sep 2024 22:39:26 +0000 Subject: [PATCH] fix paths --- buf.yaml | 1 + build.rs | 2 +- lib/vector-core/build.rs | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/buf.yaml b/buf.yaml index 9b6755725807f..a76515031211a 100644 --- a/buf.yaml +++ b/buf.yaml @@ -3,6 +3,7 @@ modules: - path: lib/vector-core/proto - path: proto/third-party - path: proto/vector + - path: proto/google/cloud/bigquery/storage/v1 lint: use: - DEFAULT diff --git a/build.rs b/build.rs index d4e1d06fd9086..b2b3328f0a4a4 100644 --- a/build.rs +++ b/build.rs @@ -119,7 +119,6 @@ fn main() { println!("cargo:rerun-if-changed=proto/third-party/dnstap.proto"); println!("cargo:rerun-if-changed=proto/third-party/google/pubsub/v1/pubsub.proto"); println!("cargo:rerun-if-changed=proto/third-party/google/rpc/status.proto"); - println!("cargo:rerun-if-changed=proto/third-party/google/rpc/code.proto" println!("cargo:rerun-if-changed=proto/vector/dd_metric.proto"); println!("cargo:rerun-if-changed=proto/vector/dd_trace.proto"); println!("cargo:rerun-if-changed=proto/vector/ddsketch_full.proto"); @@ -158,6 +157,7 @@ fn main() { &[ "proto/third-party", "proto/vector", + "proto/gogole/cloud/bigquery/storage/v1", "lib/vector-core/proto/", ], ) diff --git a/lib/vector-core/build.rs b/lib/vector-core/build.rs index 4149fdca7da8d..fcec88588fe98 100644 --- a/lib/vector-core/build.rs +++ b/lib/vector-core/build.rs @@ -6,7 +6,7 @@ fn main() { .bytes(["raw_bytes"]) .compile_protos( &["proto/event.proto"], - &["proto", "../../proto/third-party", "../../proto/vector"], + &["proto", "../../proto/third-party", "../../proto/vector", "../../proto/google/cloud/bigquery/storage/v1"], ) .unwrap(); }