From 609027bf4fdfff36e695361c5c755ec7af545a7d Mon Sep 17 00:00:00 2001 From: Qiming Teng Date: Mon, 8 Aug 2022 09:39:00 +0800 Subject: [PATCH] Update hugo build timeout According to https://gohugo.io/getting-started/configuration/#timeout, the timeout value should be a duration (e.g. `100s`) or number of milliseconds. Current value of 30000 translates to 30 seconds. This PR updates the timeout in hope it resolves the netlify preview issues that show up frequently during past weeks. --- config.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config.toml b/config.toml index 1f80097163d..5f57ed32488 100644 --- a/config.toml +++ b/config.toml @@ -15,7 +15,7 @@ disableKinds = ["taxonomy", "taxonomyTerm"] ignoreFiles = [ "(?:^|/)OWNERS$", "README[-]+[a-z]*\\.md", "^node_modules$", "content/en/docs/doc-contributor-tools" ] -timeout = 3000 +timeout = "180s" # Highlighting config. pygmentsCodeFences = true