We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8ed53de commit c966314Copy full SHA for c966314
1 file changed
components/log-viewer-webui/server/src/fastify-v2/plugins/app/socket/MongoSocketIoServer/index.ts
@@ -205,7 +205,7 @@ class MongoSocketIoServer {
205
: MongoWatcherCollection {
206
let watcherCollection = this.#collections.get(collectionName);
207
if ("undefined" === typeof watcherCollection) {
208
- watcherCollection = new MongoWatcherCollection(collectionName, this.#mongoDb, this.#logger);
+ watcherCollection = new MongoWatcherCollection(collectionName, this.#logger, this.#mongoDb);
209
this.#logger.debug(`Initialize Mongo watcher collection:${collectionName}.`);
210
this.#collections.set(collectionName, watcherCollection);
211
}
0 commit comments