Skip to content

Commit 5acf304

Browse files
committed
changelog
1 parent 8d5911d commit 5acf304

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
- Remove HTTP server shutdown message. (#1457)
22
- Add features to task queue functions. (#1423)
33
- Add traces to V2 Firestore trigger logs. (#1440)
4+
- Fix retry in event triggered functions. (#1463)

src/v2/providers/tasks.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -281,7 +281,7 @@ export function onTaskDispatched<Args = any>(
281281
convertInvoker
282282
);
283283
convertIfPresent(func.__endpoint.taskQueueTrigger, opts, "invoker", "invoker", convertInvoker);
284-
copyIfPresent(func.__endpoint.taskQueueTrigger, opts, "retry", "retry")
284+
copyIfPresent(func.__endpoint.taskQueueTrigger, opts, "retry", "retry");
285285

286286
func.__requiredAPIs = [
287287
{

0 commit comments

Comments
 (0)