Skip to content

Commit

Permalink
Cleanup printlns in schema registry code
Browse files Browse the repository at this point in the history
  • Loading branch information
mwylde committed Dec 7, 2023
1 parent 986ae79 commit 2878d9a
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions arroyo-api/src/pipelines.rs
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,6 @@ async fn try_register_confluent_schema(
.await
.map_err(|e| anyhow!("Failed to write schema to schema registry: {}", e))?;

println!("Fetched id = {}", id);
avro.schema_id = Some(id as u32);
config.format = Some(Format::Avro(avro))
}
Expand All @@ -211,8 +210,6 @@ async fn try_register_confluent_schema(

sink.config = serde_json::to_string(&config).unwrap();

println!("config = {}", sink.config);

Ok(())
}

Expand Down

0 comments on commit 2878d9a

Please sign in to comment.