chore(xo-server/collection/redis): remove unused constructor param

Introduced by 36b94f745
This commit is contained in:
Julien Fontanet 2022-08-07 13:01:51 +02:00
parent a2a98c490f
commit c5d2726faa

View File

@ -36,7 +36,7 @@ import Collection, { ModelAlreadyExists } from '../collection.mjs'
const VERSION = '20170905'
export default class Redis extends Collection {
constructor({ connection, indexes = [], namespace, uri }) {
constructor({ connection, indexes = [], namespace }) {
super()
assert(!namespace.includes(':'), 'namespace must not contains ":": ' + namespace)