We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 30bc7e8 commit 87af78dCopy full SHA for 87af78d
src/trigger.ts
@@ -105,7 +105,7 @@ class TriggerEventProcessor implements EventProcessor<LambdaTriggerEvent> {
105
export const triggerProcessor: TriggerEventProcessor = new TriggerEventProcessor()
106
107
// eslint-disable-next-line node/prefer-global/process
108
-export const triggerPathUUID = `${process.env.SECRET_SALT}-${Date.now()}-${globalThis.crypto.randomUUID()}`
+export const triggerPathUUID = `${process.env.HONO_TRIGGER_SALT}-${Date.now()}-${Math.random()}`
109
110
export function getTriggerPath(path: string) {
111
return mergePath(triggerPathUUID, path)
0 commit comments