Skip to content

Commit

Permalink
fix: bump down max bytes in memory
Browse files Browse the repository at this point in the history
  • Loading branch information
Alan Shaw committed Oct 11, 2022
1 parent f8b9d1a commit 17d7fef
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/middleware.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import { toIterable } from './util/streams.js'
* @typedef {(h: Handler) => Handler} Middleware
*/

const MAX_CAR_BYTES_IN_MEMORY = 1024 * 1024 * 100
const MAX_CAR_BYTES_IN_MEMORY = 1024 * 1024 * 5
const CAR_CODE = 0x0202

/**
Expand Down

0 comments on commit 17d7fef

Please sign in to comment.