Ignore per-name limits when using storagePolicy ALL.

This commit is contained in:
CalDescent 2023-05-12 10:12:38 +01:00
parent ba4866a2e6
commit dc1289787d

View File

@ -488,6 +488,11 @@ public class ArbitraryDataStorageManager extends Thread {
return false;
}
if (Settings.getInstance().getStoragePolicy() == StoragePolicy.ALL) {
// Using storage policy ALL, so don't limit anything per name
return true;
}
if (name == null) {
// This transaction doesn't have a name, so fall back to total space limitations
return true;