sst 2.24.21 → 2.24.22
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/EventBus.js
CHANGED
|
@@ -246,7 +246,7 @@ export class EventBus extends Construct {
|
|
|
246
246
|
});
|
|
247
247
|
this.retrierFn = new lambda.Function(this, `RetrierFunction`, {
|
|
248
248
|
functionName: app.logicalPrefixedName(this.node.id + "Retrier"),
|
|
249
|
-
runtime: lambda.Runtime.
|
|
249
|
+
runtime: lambda.Runtime.NODEJS_16_X,
|
|
250
250
|
timeout: Duration.seconds(30),
|
|
251
251
|
handler: "index.handler",
|
|
252
252
|
code: lambda.Code.fromAsset(path.join(__dirname, "../support/event-bus-retrier")),
|
package/constructs/SsrSite.d.ts
CHANGED
|
@@ -145,7 +145,7 @@ export interface SsrSiteProps {
|
|
|
145
145
|
};
|
|
146
146
|
dev?: {
|
|
147
147
|
/**
|
|
148
|
-
* When running `sst dev
|
|
148
|
+
* When running `sst dev`, site is not deployed. This is to ensure `sst dev` can start up quickly.
|
|
149
149
|
* @default false
|
|
150
150
|
* @example
|
|
151
151
|
* ```js
|
|
@@ -47,7 +47,7 @@ export class DnsValidatedCertificate extends CertificateBase {
|
|
|
47
47
|
const requestorFunction = new lambda.Function(this, "CertificateRequestorFunction", {
|
|
48
48
|
code: lambda.Code.fromAsset(path.join(__dirname, "../../support/certificate-requestor")),
|
|
49
49
|
handler: "index.certificateRequestHandler",
|
|
50
|
-
runtime: lambda.Runtime.
|
|
50
|
+
runtime: lambda.Runtime.NODEJS_16_X,
|
|
51
51
|
timeout: Duration.minutes(15),
|
|
52
52
|
role: props.customResourceRole,
|
|
53
53
|
});
|
package/context/context.js
CHANGED
|
@@ -59,8 +59,8 @@ function resetDependencies(id) {
|
|
|
59
59
|
if (!info)
|
|
60
60
|
return;
|
|
61
61
|
for (const dependantID of info.dependants) {
|
|
62
|
-
resetDependencies(dependantID);
|
|
63
62
|
state.contexts.delete(dependantID);
|
|
63
|
+
resetDependencies(dependantID);
|
|
64
64
|
}
|
|
65
65
|
}
|
|
66
66
|
export function memo(cb, name) {
|