Skip to content

Commit 08e36f1

Browse files
authored
Merge pull request #88 from smartcontractkit/zp-issue-87
Update simulation config's request bytes limit to reflect docs
2 parents b229666 + 855ef78 commit 08e36f1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/simulationConfig.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,6 +99,6 @@ export const DEFAULT_MAX_EXECUTION_DURATION_MS = 10_000 // 10 seconds
9999
export const DEFAULT_MAX_MEMORY_USAGE_MB = 128
100100
export const DEFAULT_MAX_HTTP_REQUESTS = 5
101101
export const DEFAULT_MAX_HTTP_REQUEST_DURATION_MS = 9_000 // 9 seconds
102-
export const DEFAULT_MAX_HTTP_REQUEST_URL_LENGTH = 2048 // 2 KB
102+
export const DEFAULT_MAX_HTTP_REQUEST_URL_LENGTH = 1024 * 30 // 30 KB
103103
export const DEFAULT_MAX_HTTP_REQUEST_BYTES = 2048 // 2 KB
104104
export const DEFAULT_MAX_HTTP_RESPONSE_BYTES = 2_097_152 // 2 MB

0 commit comments

Comments
 (0)