Skip to content
This repository was archived by the owner on Apr 24, 2024. It is now read-only.

Commit 2289911

Browse files
committed
fix: collaborators not matching user_ids
1 parent be4ca12 commit 2289911

File tree

1 file changed

+1
-1
lines changed
  • backend/src/keycloak_api

1 file changed

+1
-1
lines changed

backend/src/keycloak_api/api.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ impl KeycloakApi for Api {
112112
let api = self.clone();
113113
tokio::spawn(async move { api.get_user_by_id(&client, id).await })
114114
})
115-
.buffer_unordered(10);
115+
.buffered(10); // buffered, because we want the users in the order of the ids
116116

117117
let users = future_stream
118118
.map(|res| match res {

0 commit comments

Comments
 (0)