Skip to content

Commit

Permalink
fix: add timeoutSecs to standby manifests (#281)
Browse files Browse the repository at this point in the history
  • Loading branch information
jirimoravcik authored Jul 23, 2024
1 parent c5b3864 commit 02cc720
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions templates/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,8 @@
"archiveUrl": "https://github.com/apify/actor-templates/blob/master/dist/templates/python-standby.zip?raw=true",
"defaultRunOptions": {
"build": "latest",
"memoryMbytes": 1024
"memoryMbytes": 1024,
"timeoutSecs": 3600
},
"showcaseFiles": [
"src/main.py",
Expand Down Expand Up @@ -473,7 +474,8 @@
"archiveUrl": "https://github.com/apify/actor-templates/blob/master/dist/templates/ts-standby.zip?raw=true",
"defaultRunOptions": {
"build": "latest",
"memoryMbytes": 1024
"memoryMbytes": 1024,
"timeoutSecs": 3600
},
"showcaseFiles": [
"src/main.ts"
Expand Down Expand Up @@ -542,7 +544,8 @@
"archiveUrl": "https://github.com/apify/actor-templates/blob/master/dist/templates/js-standby.zip?raw=true",
"defaultRunOptions": {
"build": "latest",
"memoryMbytes": 1024
"memoryMbytes": 1024,
"timeoutSecs": 3600
},
"showcaseFiles": [
"src/main.js"
Expand Down

0 comments on commit 02cc720

Please sign in to comment.