Skip to content

Commit 4e597ef

Browse files
author
Anton Kotenko
committed
elasticio-2182 cleaning
1 parent 6c2cea4 commit 4e597ef

File tree

76 files changed

+1677
-2437
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

76 files changed

+1677
-2437
lines changed

.env

Lines changed: 0 additions & 13 deletions
This file was deleted.

.eslintignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
syntax_error_trigger.js
1+
syntax_error_trigger.js

.eslintrc.js

Lines changed: 0 additions & 150 deletions
This file was deleted.

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
coverage
1+
.nyc_output
22
node_modules
33
.DS_Store
44
.idea

.npmignore

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
.env
21
.idea
32
.circleci
4-
mocha_spec
3+
node_modules
4+
.nyc_output
55
spec
66
.*.swp

createQueues.js

Lines changed: 0 additions & 148 deletions
This file was deleted.

gulpfile.js

Lines changed: 0 additions & 31 deletions
This file was deleted.

lib/AmqpConnWrapper.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,18 +10,18 @@ class AmqpConnWrapper {
1010
// TODO handle channel errors. Recoonect????
1111
this._amqp = await amqplib.connect(this._amqpUri);
1212
// FIXME
13-
//this.amqp.on('error', this._logger.criticalerrorandExit);
14-
//this.amqp.on('close', this._logger.criticalerrorandExit);
13+
// this.amqp.on('error', this._logger.criticalerrorandExit);
14+
// this.amqp.on('close', this._logger.criticalerrorandExit);
1515
this._logger.debug('Connected to amqp');
1616

1717
this._subscribeChannel = await this._amqp.createChannel();
1818
// FIXME
19-
//this.subscribeChannel.on('error', this._logger.criticalErrorAndExit);
19+
// this.subscribeChannel.on('error', this._logger.criticalErrorAndExit);
2020
this._logger.debug('Opened subscribe channel');
2121

2222
this._publishChannel = await this._amqp.createConfirmChannel();
2323
// FIXME
24-
//this.publishChannel.on('error', this._logger.criticalErrorAndExit);
24+
// this.publishChannel.on('error', this._logger.criticalErrorAndExit);
2525
this._logger.debug('Opened publish channel');
2626
}
2727
async stop() {

lib/App.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,6 @@ class App {
3636
}
3737
}
3838

39-
4039
/**
4140
* Gracefully stop application.
4241
* part of standard shutdown procedure

0 commit comments

Comments
 (0)