bump ruma

tweak tracing instrument

Signed-off-by: Jason Volk <jason@zemos.net>
This commit is contained in:
Jason Volk 2025-01-01 23:47:42 +00:00 committed by strawberry
parent 1a71798859
commit 33635e11d1
4 changed files with 16 additions and 16 deletions

View file

@ -6,7 +6,7 @@ use ruma::{
/// Returns Ok if the acl allows the server
#[implement(super::Service)]
#[tracing::instrument(skip_all)]
#[tracing::instrument(skip_all, level = "debug")]
pub async fn acl_check(&self, server_name: &ServerName, room_id: &RoomId) -> Result {
let Ok(acl_event_content) = self
.services

View file

@ -114,7 +114,7 @@ pub async fn state_resolution(
&self,
room_version: &RoomVersionId,
state_sets: &[StateMap<OwnedEventId>],
auth_chain_sets: &Vec<HashSet<OwnedEventId>>,
auth_chain_sets: &[HashSet<OwnedEventId>],
) -> Result<StateMap<OwnedEventId>> {
//TODO: ???
let _lock = self.services.globals.stateres_mutex.lock();