able to configure the quota for a bucket

This commit is contained in:
chrislu
2022-01-21 01:42:20 -08:00
parent b1063162b6
commit 606667f205
3 changed files with 100 additions and 0 deletions

View File

@@ -118,6 +118,9 @@ func EqualEntry(a, b *Entry) bool {
if !proto.Equal(a.Remote, b.Remote) {
return false
}
if a.Quota != b.Quota {
return false
}
return true
}