Remove plans/ directory (P0/P1/P2 work complete)

This commit is contained in:
2026-05-27 02:12:21 -05:00
parent 0c1840d223
commit 0dbb2e02ed
33 changed files with 1906 additions and 990 deletions
+1 -1
View File
@@ -202,7 +202,7 @@ func (tc *TieredCache) promoteToFast(key string, reader io.ReadCloser) {
}
}
// P1-01: guard promotion ReadAll using already-fetched size (in addition to space check above)
// Guard promotion ReadAll using already-fetched size (in addition to space check above)
if size > 0 && size > (1<<30) { // conservative 1GB hard limit on promotion reads (aligns with typical max_object_size)
return
}