chore: cleanup unused constants

We have some leftover constants from some previous changes. This
just cleans up all that are no longer needed.
This commit is contained in:
Ben McClelland
2025-10-09 12:19:00 -07:00
parent 874165cdcf
commit 40da4a31d3
5 changed files with 4 additions and 8 deletions

View File

@@ -174,7 +174,7 @@ func NewChunkReader(ctx *fiber.Ctx, r io.Reader, authdata AuthData, region, secr
}
if decContLength > maxObjSizeLimit {
debuglogger.Logf("the object size exceeds the allowed limit: (size): %v, (limit): %v", decContLength, maxObjSizeLimit)
debuglogger.Logf("the object size exceeds the allowed limit: (size): %v, (limit): %v", decContLength, int64(maxObjSizeLimit))
return nil, s3err.GetAPIError(s3err.ErrEntityTooLarge)
}