Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -36,3 +36,4 @@ sandbox.config.json
.cache
.kilocode
.kilo
.markdown-link-resolver/
Original file line number Diff line number Diff line change
Expand Up @@ -63,13 +63,13 @@ For this integration, you only have to pass one argument in the Args JSON file:

```json
{
"max_payload_length": "10kb"
"max_content_length": "10kb"
}
```

Some information about how this integration works:

- The `max_payload_length` is the maximum size of the payload you'll accept.
- The `max_content_length` is the maximum size of the payload you'll accept.
- This field accepts bytes, kilobytes, and megabytes as argument.
- If you don't specify the unit of the payload size, it'll be assumed as bytes.
- If you don't pass any argument, the function will bypass the execution.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -64,13 +64,13 @@ Nesta integração você passará somente um argumento em **Arguments**:

```json
{
"max_payload_length": "10kb"
"max_content_length": "10kb"
}
```

Algumas informações sobre como esta integração funciona:

- O `max_payload_length` é o tamanho máximo do payload que sua função aceitará.
- O `max_content_length` é o tamanho máximo do payload que sua função aceitará.
- Este campo aceita bytes, kilobytes e megabytes como argumento.
- Se você não especificar a unidade de tamanho para o payload, a função assumirá como sendo em bytes.
- Se você não passar nenhum argumento, a função irá ignorar a execução.
Expand Down