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 5145e18 commit b285d7aCopy full SHA for b285d7a
src/v2/providers/database.ts
@@ -447,7 +447,7 @@ export function makeEndpoint(
447
eventType,
448
eventFilters,
449
eventFilterPathPatterns,
450
- retry: false,
+ retry: opts.retry,
451
},
452
};
453
}
@@ -459,6 +459,7 @@ export function onChangedOperation<Ref extends string>(
459
handler: (event: DatabaseEvent<Change<DataSnapshot>, ParamsOf<Ref>>) => any | Promise<any>
460
): CloudFunction<DatabaseEvent<Change<DataSnapshot>, ParamsOf<Ref>>> {
461
const { path, instance, opts } = getOpts(referenceOrOpts);
462
+ console.log(opts);
463
464
const pathPattern = new PathPattern(path);
465
const instancePattern = new PathPattern(instance);
0 commit comments