Skip to content

Commit

Permalink
wd
Browse files Browse the repository at this point in the history
  • Loading branch information
TroyKomodo committed May 6, 2024
1 parent 1f7ce8b commit 0a45f17
Show file tree
Hide file tree
Showing 13 changed files with 738 additions and 519 deletions.
1 change: 0 additions & 1 deletion foundations/src/telemetry/settings.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ use std::net::SocketAddr;
use opentelemetry_otlp::WithExportConfig;
#[cfg(feature = "opentelemetry")]
use opentelemetry_sdk::Resource;

#[cfg(feature = "logging")]
use tracing_subscriber::fmt::time::{ChronoLocal, ChronoUtc};

Expand Down
7 changes: 1 addition & 6 deletions image-processor/proto/build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -27,12 +27,7 @@ fn main() -> Result<(), Box<dyn std::error::Error>> {
#[cfg(feature = "serde")]
pbjson_build::Builder::new()
.register_descriptors(&descriptor_set)?
.build(
&[
".scuffle.image_processor",
],
)?;

.build(&[".scuffle.image_processor"])?;

Ok(())
}
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ import "scuffle/image_processor/types.proto";
service ImageProcessor {
// Submit a task to process an image
rpc ProcessImage(ProcessImageRequest) returns (ProcessImageResponse) {}

// Cancel a task
rpc CancelTask(CancelTaskRequest) returns (CancelTaskResponse) {}
}
Expand Down
Loading

0 comments on commit 0a45f17

Please sign in to comment.