Skip to content

Commit

Permalink
fix: remove timeout update conurrency from 10 to 50
Browse files Browse the repository at this point in the history
  • Loading branch information
pghorpade committed Aug 5, 2024
1 parent 4ff0dba commit b781db1
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/auto-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
nuxt-prod:
name: Netlify deploy
runs-on: ubuntu-latest
timeout-minutes: 50
# timeout-minutes: 50
steps:
- uses: actions/checkout@v3
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/manual-site-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
nuxt-deploy:
name: Static Generation build
runs-on: ubuntu-latest
timeout-minutes: 50
# timeout-minutes: 50
steps:
- uses: actions/checkout@v3
- uses: ./.github/workflows/setup-workspace
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/on-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
name: Netlify deploy
needs: set-tag
runs-on: ubuntu-latest
timeout-minutes: 50
# timeout-minutes: 50
steps:
- uses: actions/checkout@v3
with:
Expand Down
4 changes: 2 additions & 2 deletions nuxt.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -106,8 +106,8 @@ export default {
// exclude is for npm run genereate uncomment for local builds
// exclude:[/^\/help/,/^\/visit/,/^\/give/,/^\/help/,/^\/give/,/^\/impact/],
fallback: "404.html",
interval: 500,
concurrency: 10,
interval: 1000,
concurrency: 50,
async routes() {
const result = await axios({
url: process.env.CRAFT_ENDPOINT,
Expand Down

0 comments on commit b781db1

Please sign in to comment.