Skip to content

Commit c2336e1

Browse files
committed
Fix max limit info
1 parent d375731 commit c2336e1

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

articles/azure-functions/functions-reference-node.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1436,13 +1436,13 @@ HTTP streams is currently in preview.
14361436
The existing `HttpRequest` and `HttpResponse` types in programming model v4 already support various ways of handling the message body, including as a stream.
14371437
14381438
### Prerequisites
1439-
- Version 4.3.0 or higher for the `@azure/functions` npm package.
1439+
- The [`@azure/functions` npm package](https://www.npmjs.com/package/@azure/functions) version 4.3.0 or later.
14401440
- [Azure Functions runtime](./functions-versions.md) version 4.28 or later.
14411441
- [Azure Functions Core Tools](./functions-run-local.md) version 4.0.5530 or a later version, which contains the correct runtime version.
14421442
14431443
### Enable streams
14441444
1445-
1. If you plan to stream large amounts of data, modify the [`FUNCTIONS_REQUEST_BODY_SIZE_LIMIT`](./functions-app-settings.md#functions_request_body_size_limit) setting in Azure. The default value for this setting is `104857600`, which limits your request to a size of 100 MB.
1445+
1. If you plan to stream large amounts of data, modify the [`FUNCTIONS_REQUEST_BODY_SIZE_LIMIT`](./functions-app-settings.md#functions_request_body_size_limit) setting in Azure. The maximum body size allowed is `104857600`, which limits your request to a size of 100 MB.
14461446
14471447
1. For local development, also add `FUNCTIONS_REQUEST_BODY_SIZE_LIMIT` to the [local.settings.json file](./functions-develop-local.md#local-settings-file).
14481448
@@ -1452,13 +1452,15 @@ The existing `HttpRequest` and `HttpResponse` types in programming model v4 alre
14521452
14531453
```javascript
14541454
const { app } = require('@azure/functions');
1455+
14551456
app.setup({ enableHttpStream: true });
14561457
```
14571458
14581459
#### [TypeScript](#tab/typescript)
14591460
14601461
```typescript
14611462
import { app } from '@azure/functions';
1463+
14621464
app.setup({ enableHttpStream: true });
14631465
```
14641466

0 commit comments

Comments
 (0)