Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Amqp source add #831

Draft
wants to merge 17 commits into
base: master
Choose a base branch
from
Prev Previous commit
Next Next commit
lint
  • Loading branch information
stan-dot committed Feb 6, 2025
commit 66f44aa2e9ead2cbfa163dd2e6b74e732e7bb600
3 changes: 1 addition & 2 deletions crates/arroyo-connectors/src/amqp/operator.rs
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,7 @@ impl AmqpSourceFunc {
}

#[async_trait]
impl ArrowOperator for AmqpSourceFunc{
impl ArrowOperator for AmqpSourceFunc {
fn name(&self) -> String {
"AmqpSource".to_string()
}
Expand All @@ -214,7 +214,6 @@ impl ArrowOperator for AmqpSourceFunc{
}
}


#[async_trait]
impl SourceOperator for AmqpSourceFunc {
fn name(&self) -> String {
Expand Down
Loading