Skip to content

Commit

Permalink
Fixed issue with batchRemove
Browse files Browse the repository at this point in the history
Changed reference to records to new parameter name keys
  • Loading branch information
DomPeliniAerospike committed Nov 3, 2023
1 parent d5f9694 commit 9f6f3c5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/client.js
Original file line number Diff line number Diff line change
Expand Up @@ -1623,7 +1623,7 @@ Client.prototype.batchRemove = function (keys, batchPolicy, batchRemovePolicy, c
}
}

const cmd = new Commands.BatchRemove(this, [records, batchPolicy, batchRemovePolicy], callback)
const cmd = new Commands.BatchRemove(this, [keys, batchPolicy, batchRemovePolicy], callback)
return cmd.execute()
}

Expand Down

0 comments on commit 9f6f3c5

Please sign in to comment.