Skip to content

Commit 6bbcc4f

Browse files
committed
Add explanation about max-in-memory-size
1 parent 254d558 commit 6bbcc4f

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

README.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,4 +44,14 @@ should be defined as `graphql.client.url` in your Spring Boot configuration file
4444
| `oauth2.token-uri` | Token URI of the identity provider |
4545
| `oauth2.authorization-grant-type` | By default the grant type `client_credentials` is used |
4646

47+
### Max in memory size
4748

49+
In case you need to work with large responses you might run into the following error:
50+
```
51+
Exceeded limit on max bytes to buffer : 262144
52+
```
53+
In that case starting with version 0.1.2 you can use the default Spring Boot configuration property to configure
54+
the max in memory size to use:
55+
```properties
56+
spring.codec.max-in-memory-size=10MB
57+
```

0 commit comments

Comments
 (0)