Local cache lock (#5193)

This commit is contained in:
François-Xavier Talbot
2026-01-23 18:35:46 -05:00
committed by GitHub
parent fa421b4b83
commit 2d7e87a4cb
5 changed files with 215 additions and 136 deletions

View File

@@ -1051,7 +1051,9 @@ async fn create_dummy_org(setup_api: &ApiV3) -> (String, String) {
ADMIN_USER_PAT,
)
.await;
assert!(resp.status().is_success());
println!("response: {:?}", resp.response(),);
assert_eq!(resp.status(), StatusCode::OK);
let organization = setup_api
.get_organization_deserialized(&slug, ADMIN_USER_PAT)