feat(connector): implement gzipped protobuf support for WASM and fix all warnings

This commit is contained in:
2025-09-09 02:30:16 -07:00
parent e4186a7ec0
commit d97f7507e8
6 changed files with 679 additions and 26 deletions
+2 -2
View File
@@ -26,10 +26,10 @@ async fn main() -> Result<(), Box<dyn std::error::Error>> {
// Make a request to get metrics
match connector.request(AgentRequest::Metrics).await {
Ok(response) => {
println!("Successfully received response: {:?}", response);
println!("Successfully received response: {response:?}");
}
Err(e) => {
println!("Request failed: {}", e);
println!("Request failed: {e}");
}
}