sst 2.44.1 → 2.44.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/constructs/Job.d.ts +1 -1
- package/constructs/Job.js +1 -1
- package/package.json +2 -2
package/constructs/Job.d.ts
CHANGED
package/constructs/Job.js
CHANGED
|
@@ -406,7 +406,7 @@ export class Job extends Construct {
|
|
|
406
406
|
}
|
|
407
407
|
normalizeTimeout(timeout) {
|
|
408
408
|
const value = toCdkDuration(timeout);
|
|
409
|
-
if (value.toSeconds() < 5 * 60 || value.toSeconds() >
|
|
409
|
+
if (value.toSeconds() < 5 * 60 || value.toSeconds() > 2160 * 60) {
|
|
410
410
|
throw new Error(`Invalid timeout value for the ${this.node.id} Job.`);
|
|
411
411
|
}
|
|
412
412
|
return value;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"sideEffects": false,
|
|
3
3
|
"name": "sst",
|
|
4
|
-
"version": "2.44.
|
|
4
|
+
"version": "2.44.2",
|
|
5
5
|
"bin": {
|
|
6
6
|
"sst": "cli/sst.js"
|
|
7
7
|
},
|
|
@@ -118,7 +118,7 @@
|
|
|
118
118
|
"@types/ws": "^8.5.3",
|
|
119
119
|
"@types/yargs": "^17.0.13",
|
|
120
120
|
"archiver": "^5.3.1",
|
|
121
|
-
"astro-sst": "2.44.
|
|
121
|
+
"astro-sst": "2.44.2",
|
|
122
122
|
"async": "^3.2.4",
|
|
123
123
|
"tsx": "^3.12.1",
|
|
124
124
|
"typescript": "^5.2.2",
|