Skip to content

Commit

Permalink
address PR comments
Browse files Browse the repository at this point in the history
  • Loading branch information
jorgeantonio21 committed Dec 3, 2024
1 parent 42f42af commit adff7bc
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
5 changes: 0 additions & 5 deletions atoma-bin/atoma_node.rs
Original file line number Diff line number Diff line change
Expand Up @@ -227,11 +227,6 @@ async fn main() -> Result<()> {

spawn_with_shutdown(
async move {
info!(
target = "atoma-node-service",
event = "confidential_compute_service_run",
"Running confidential compute service"
);
let result = confidential_compute_service.run().await;
info!(
target = "atoma-node-service",
Expand Down
5 changes: 5 additions & 0 deletions atoma-confidential/src/service.rs
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,11 @@ impl AtomaConfidentialComputeService {
/// Note: Channel receive errors are logged but don't cause the service to return an error.
#[instrument(level = "trace", skip_all)]
pub async fn run(mut self) -> Result<()> {
tracing::info!(
target = "atoma-confidential-compute-service",
event = "confidential_compute_service_run",
"Running confidential compute service"
);
loop {
tokio::select! {
Some((decryption_request, sender)) = self.service_decryption_receiver.recv() => {
Expand Down

0 comments on commit adff7bc

Please sign in to comment.