Fixed queue migration, tenant quotas API and bumped dependencies

This commit is contained in:
mdecimus
2025-05-18 11:58:36 +02:00
parent 4e5c4554c7
commit c79367f790
11 changed files with 304 additions and 387 deletions

View File

@@ -2312,7 +2312,7 @@ impl ManageDirectory for Store {
quotas[0] = quota;
}
for quota in principal_quotas {
quotas[quota.typ as usize] = quota.quota;
quotas[(quota.typ as usize) + 1] = quota.quota;
}
result.set(PrincipalField::Quota, quotas);