Compare commits

..

4 commits

Author SHA1 Message Date
Jacob Taylor
db2e7690c8 more funny settings (part 3 of 12)
Some checks failed
Checks / Prefligit / prefligit (push) Failing after 5s
Release Docker Image / define-variables (push) Failing after 2s
Release Docker Image / build-image (linux/amd64, release, linux-amd64, base) (push) Has been skipped
Release Docker Image / build-image (linux/arm64, release, linux-arm64, base) (push) Has been skipped
Release Docker Image / merge (push) Has been skipped
Checks / Rust / Format (push) Failing after 3s
Checks / Rust / Clippy (push) Failing after 16s
Checks / Rust / Cargo Test (push) Failing after 15s
2025-07-03 14:44:28 -07:00
Jacob Taylor
1f1cde297d sender_workers scaling. this time, with feeling! 2025-07-03 14:44:28 -07:00
Jacob Taylor
2e80200c64 vehicle loan documentation now available at window 7 2025-07-03 14:44:27 -07:00
Jacob Taylor
9e8c193840 lock the getter instead ??? c/o M 2025-07-03 14:39:10 -07:00
2 changed files with 2 additions and 1 deletions

View file

@ -6,6 +6,7 @@ use conduwuit::{
trace, trace,
utils::stream::{BroadbandExt, ReadyExt}, utils::stream::{BroadbandExt, ReadyExt},
warn, warn,
info
}; };
use futures::{FutureExt, StreamExt, future::ready}; use futures::{FutureExt, StreamExt, future::ready};
use ruma::{CanonicalJsonValue, RoomId, ServerName, events::StateEventType}; use ruma::{CanonicalJsonValue, RoomId, ServerName, events::StateEventType};

View file

@ -42,7 +42,7 @@ pub async fn create_hash_and_sign_event(
let prev_events: Vec<OwnedEventId> = self let prev_events: Vec<OwnedEventId> = self
.services .services
.state .state
.get_forward_extremities(room_id) .get_forward_extremities(room_id, _mutex_lock)
.take(20) .take(20)
.map(Into::into) .map(Into::into)
.collect() .collect()