hono-adapter-aws-lambda 1.3.2 → 1.3.3
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/dist/index.mjs +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -253,7 +253,7 @@ class TriggerEventProcessor {
|
|
|
253
253
|
}
|
|
254
254
|
}
|
|
255
255
|
const triggerProcessor = new TriggerEventProcessor();
|
|
256
|
-
const triggerPathUUID = `${process.env.
|
|
256
|
+
const triggerPathUUID = `${process.env.HONO_TRIGGER_SALT}-${Date.now()}-${Math.random()}`;
|
|
257
257
|
function getTriggerPath(path) {
|
|
258
258
|
return mergePath(triggerPathUUID, path);
|
|
259
259
|
}
|