cleanup: make blob sizes easier to understand

This is a followup to https://github.com/distribution/distribution/pull/4139

Signed-off-by: Milos Gajdos <milosthegajdos@gmail.com>
tcl/master
Milos Gajdos 2023-10-31 14:53:02 -07:00
parent ecb475a232
commit 7430651536
No known key found for this signature in database
4 changed files with 4 additions and 4 deletions

View File

@ -24,7 +24,7 @@ import (
const (
defaultArch = "amd64"
defaultOS = "linux"
maxManifestBodySize = 4 << 20
maxManifestBodySize = 4 * 1024 * 1024
imageClass = "image"
)

View File

@ -320,7 +320,7 @@ func TestProxyStoreServeMany(t *testing.T) {
func TestProxyStoreServeBig(t *testing.T) {
te := makeTestEnv(t, "foo/bar")
blobSize := 2 << 20
blobSize := 2 * 1024 * 1024
blobCount := 4
numUnique := 2
populate(t, te, blobCount, blobSize, numUnique)

View File

@ -15,7 +15,7 @@ import (
// set this correctly, so we may want to leave it to the driver. For
// out of process drivers, we'll have to optimize this buffer size for
// local communication.
const fileReaderBufferSize = 4 << 20
const fileReaderBufferSize = 4 * 1024 * 1024
// remoteFileReader provides a read seeker interface to files stored in
// storagedriver. Used to implement part of layer interface and will be used

View File

@ -9,7 +9,7 @@ import (
)
const (
maxBlobGetSize = 4 << 20
maxBlobGetSize = 4 * 1024 * 1024
)
func getContent(ctx context.Context, driver driver.StorageDriver, p string) ([]byte, error) {