diff --git a/crates/worker/src/processor/compile_processor.rs b/crates/worker/src/processor/compile_processor.rs index bf15116..9fa0d83 100644 --- a/crates/worker/src/processor/compile_processor.rs +++ b/crates/worker/src/processor/compile_processor.rs @@ -80,7 +80,7 @@ impl CompileProcessor { let compilation_input = self .input_preparator - .prepare_compile_input(&message) + .prepare_input(&message) .await .map_err(|err| { let receipt_handle_copy = receipt_handle.clone(); diff --git a/crates/worker/src/processor/input_preparator.rs b/crates/worker/src/processor/input_preparator.rs index a3f3217..7200758 100644 --- a/crates/worker/src/processor/input_preparator.rs +++ b/crates/worker/src/processor/input_preparator.rs @@ -15,7 +15,7 @@ impl CompileInputPreparator { Self { s3_client } } - pub(crate) async fn prepare_compile_input( + pub(crate) async fn prepare_input( &self, request: &CompilationRequest, ) -> anyhow::Result { @@ -43,7 +43,7 @@ impl VerifyInputPreparator { Self { s3_client } } - pub(crate) async fn prepare_compile_input( + pub(crate) async fn prepare_input( &self, request: &VerificationRequest, ) -> anyhow::Result { diff --git a/crates/worker/src/processor/verify_processor.rs b/crates/worker/src/processor/verify_processor.rs index f703bae..61da14a 100644 --- a/crates/worker/src/processor/verify_processor.rs +++ b/crates/worker/src/processor/verify_processor.rs @@ -75,7 +75,7 @@ impl VerifyProcessor { let input = self .input_preparator - .prepare_compile_input(&message) + .prepare_input(&message) .await .map_err(|err| { let receipt_handle_copy = receipt_handle.clone();