Compare commits

..

4 commits

Author SHA1 Message Date
Jacob Taylor
83a97e63d2 more funny settings (part 3 of 12)
Some checks failed
Checks / Prefligit / prefligit (push) Failing after 3s
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 5s
Checks / Rust / Clippy (push) Failing after 41s
Checks / Rust / Cargo Test (push) Failing after 39s
2025-07-03 14:32:05 -07:00
Jacob Taylor
70e15c4e1a sender_workers scaling. this time, with feeling! 2025-07-03 14:32:05 -07:00
Jacob Taylor
3230e1acae vehicle loan documentation now available at window 7
also print event id
2025-07-03 14:32:05 -07:00
Jacob Taylor
d0aa9eade4 lock the getter instead ??? c/o M 2025-07-03 14:32:05 -07:00
2 changed files with 1 additions and 2 deletions

View file

@ -6,7 +6,6 @@ use conduwuit::{
trace,
utils::stream::{BroadbandExt, ReadyExt},
warn,
info
};
use futures::{FutureExt, StreamExt, future::ready};
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
.services
.state
.get_forward_extremities(room_id, _mutex_lock)
.get_forward_extremities(room_id)
.take(20)
.map(Into::into)
.collect()