Skip to content

Commit 06ba055

Browse files
authored
feat(consts): increase input schema max size to 500 kB (#478)
This will need to bubble through to the Console and worker after it's merged to become effective.
1 parent eec20b5 commit 06ba055

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/consts/src/consts.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -204,7 +204,7 @@ export const ACTOR_LIMITS = {
204204
MAX_RUN_MEMORY_MBYTES: 32768,
205205

206206
// Maximum size of actor input schema.
207-
INPUT_SCHEMA_MAX_BYTES: 200 * 1024,
207+
INPUT_SCHEMA_MAX_BYTES: 500 * 1024,
208208

209209
// Max length of run/build log in number of characters
210210
LOG_MAX_CHARS: 10 * 1024 * 1024,

0 commit comments

Comments
 (0)