Skip to content

Commit

Permalink
editoast: add comment explaining [allow(dead_code)] usage
Browse files Browse the repository at this point in the history
Signed-off-by: hamz2a <[email protected]>
  • Loading branch information
hamz2a committed Mar 7, 2025
1 parent bda924a commit fa84af4
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions editoast/src/core/mq_client.rs
Original file line number Diff line number Diff line change
Expand Up @@ -292,6 +292,10 @@ impl RabbitMQClient {
}
}

// Left here because its isolated, its not increasing the surface of attack,
// its not making the maintenance more complex since it is small
// and the API is complete with it since it is part of the API
// we designed around RMQ.
#[allow(dead_code)]
pub async fn call<T>(
&self,
Expand Down

0 comments on commit fa84af4

Please sign in to comment.