Skip to content
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion src/utils/deploy/hash-fns.ts
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@ const hashFns = async (
const fnConfig = functionZips
.filter((func) =>
Boolean(
func.displayName || func.generator || func.routes || func.buildData || func.priority || func.trafficRules,
func.displayName || func.generator || func.routes || func.buildData || func.priority || func.trafficRules || func.eventSubscriptions,
),
Comment thread
coderabbitai[bot] marked this conversation as resolved.
)
.reduce(
Expand All @@ -201,6 +201,7 @@ const hashFns = async (
build_data: curr.buildData,
priority: curr.priority,
traffic_rules: trafficRulesConfig(curr.trafficRules),
event_subscriptions: curr.eventSubscriptions,
},
}),
{},
Expand Down
Loading