We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 548b359 commit 389e600Copy full SHA for 389e600
2 files changed
OpenFlow/src/DatabaseConnection.ts
@@ -367,9 +367,6 @@ export class DatabaseConnection {
367
_pipe = _pipe.project(projection);
368
}
369
_pipe = _pipe.sort(mysort as any).limit(top).skip(skip);
370
- if (projection != null) {
371
- _pipe = _pipe.project(projection);
372
- }
373
if (hint) {
374
_pipe = _pipe.hint(myhint);
375
OpenFlow/src/WebSocketServerClient.ts
@@ -234,7 +234,7 @@ export class WebSocketServerClient {
234
});
235
qname = queue.queue;
236
this._queues.push(queue);
237
- console.log('_queues.length: ' + this._queues.length);
+ // console.log('_queues.length: ' + this._queues.length);
238
} catch (error) {
239
this._logger.error("WebSocketclient::CreateConsumer " + error);
240
0 commit comments