File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ attachment. It can also write a CSV file from the incoming events.
17
17
2 . ` REQUEST_TIMEOUT ` - HTTP request timeout in milliseconds, default value 10000
18
18
3 . ` REQUEST_RETRY_DELAY ` - delay between retry attempts in milliseconds, default value 7000
19
19
4 . ` REQUEST_MAX_RETRY ` - number of HTTP request retry attempts, default value 7
20
- 5 . ` REQUEST_MAX_CONTENT_LENGTH ` - max size of http request in bytes, default value: 104857600
20
+ 5 . ` REQUEST_MAX_CONTENT_LENGTH ` - max size of http request in bytes, default value: 10485760
21
21
6 . ` TIMEOUT_BETWEEN_EVENTS ` - number of milliseconds write action wait before creating separate attachments, default value: 10000
22
22
23
23
## Credentials
Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ const util = require('../util/util');
12
12
const REQUEST_TIMEOUT = process . env . REQUEST_TIMEOUT || 10000 ; // 10s
13
13
const REQUEST_MAX_RETRY = process . env . REQUEST_MAX_RETRY || 7 ;
14
14
const REQUEST_RETRY_DELAY = process . env . REQUEST_RETRY_DELAY || 7000 ; // 7s
15
- const REQUEST_MAX_CONTENT_LENGTH = process . env . REQUEST_MAX_CONTENT_LENGTH || 104857600 ; // 100MB
15
+ const REQUEST_MAX_CONTENT_LENGTH = process . env . REQUEST_MAX_CONTENT_LENGTH || 10485760 ; // 10MB
16
16
const TIMEOUT_BETWEEN_EVENTS = process . env . TIMEOUT_BETWEEN_EVENTS || 10000 ; // 10s;
17
17
18
18
let stringifier ;
You can’t perform that action at this time.
0 commit comments