Skip to content

Commit d212535

Browse files
committed
fix options in DB controller
1 parent de00a58 commit d212535

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Controllers/DatabaseController.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -370,7 +370,7 @@ class DatabaseController {
370370
constructor(adapter: StorageAdapter, options: ParseServerOptions) {
371371
this.adapter = adapter;
372372
this.options = options || {};
373-
this.idempotencyOptions = options.idempotencyOptions || {};
373+
this.idempotencyOptions = this.options.idempotencyOptions || {};
374374
// Prevent mutable this.schema, otherwise one request could use
375375
// multiple schemas, so instead use loadSchema to get a schema.
376376
this.schemaPromise = null;

0 commit comments

Comments
 (0)