Skip to content

Commit 4ffcf78

Browse files
GatsbyJS Botaxe312ger
GatsbyJS Bot
andauthoredApr 2, 2021
fix(gatsby-source-contentful): Contentful page limit backoff (#30549) (#30618)
(cherry picked from commit 9d883c6) Co-authored-by: Benedikt Rötsch <axe312ger@users.noreply.github.com>

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎packages/gatsby-source-contentful/src/gatsby-node.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ List of locales and their codes can be found in Contentful app -> Settings -> Lo
105105
.description(
106106
`Number of entries to retrieve from Contentful at a time. Due to some technical limitations, the response payload should not be greater than 7MB when pulling content from Contentful. If you encounter this issue you can set this param to a lower number than 100, e.g 50.`
107107
)
108-
.default(100),
108+
.default(1000),
109109
assetDownloadWorkers: Joi.number()
110110
.integer()
111111
.description(

0 commit comments

Comments
 (0)
Please sign in to comment.