diff --git a/changelog/unreleased/eos-default-quota-fix.md b/changelog/unreleased/eos-default-quota-fix.md new file mode 100644 index 0000000000..2df9afccd7 --- /dev/null +++ b/changelog/unreleased/eos-default-quota-fix.md @@ -0,0 +1,6 @@ +Bugfix: Fixes the DefaultQuotaBytes in EOS + +We were setting the default logical quota to 1T, resulting +on only 500GB available to the user. + +https://github.com/cs3org/reva/pull/3492 diff --git a/pkg/storage/utils/eosfs/eosfs.go b/pkg/storage/utils/eosfs/eosfs.go index 9f09b11d82..f43cb4d3d2 100644 --- a/pkg/storage/utils/eosfs/eosfs.go +++ b/pkg/storage/utils/eosfs/eosfs.go @@ -100,7 +100,7 @@ func (c *Config) init() { } if c.DefaultQuotaBytes == 0 { - c.DefaultQuotaBytes = 1000000000000 // 1 TB + c.DefaultQuotaBytes = 2000000000000 // 1 TB logical } if c.DefaultQuotaFiles == 0 { c.DefaultQuotaFiles = 1000000 // 1 Million