sst 2.24.25 → 2.24.26

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.
@@ -107,7 +107,7 @@ export class Cron extends Construct {
107
107
  jobProps = {};
108
108
  }
109
109
  // create function
110
- const fn = Func.fromDefinition(this, "Job", jobFunction);
110
+ const fn = Func.fromDefinition(this, `Job_${this.node.id}`, jobFunction);
111
111
  this.cdk.rule.addTarget(new eventsTargets.LambdaFunction(fn, jobProps));
112
112
  return fn;
113
113
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "sideEffects": false,
3
3
  "name": "sst",
4
- "version": "2.24.25",
4
+ "version": "2.24.26",
5
5
  "bin": {
6
6
  "sst": "cli/sst.js"
7
7
  },