Fix potential error handling bug due to missing EventEmitter.call(this) in EventStoreNodeConnection and EventStoreConnectionLogicHandler

This commit is contained in:
Nicolas Dextraze 2018-01-17 11:29:24 -08:00
parent bf89354564
commit a2aab715ed
2 changed files with 2 additions and 0 deletions

View File

@ -43,6 +43,7 @@ const EmptyGuid = '00000000-0000-0000-0000-000000000000';
* @property {Number} totalOperationCount
*/
function EventStoreConnectionLogicHandler(esConnection, settings) {
EventEmitter.call(this);
this._esConnection = esConnection;
this._settings = settings;
this._queue = new SimpleQueuedHandler();

View File

@ -37,6 +37,7 @@ const MaxReadSize = 4096;
* @constructor
*/
function EventStoreNodeConnection(settings, clusterSettings, endpointDiscoverer, connectionName) {
EventEmitter.call(this);
this._connectionName = connectionName || ['ES-', uuid.v4()].join('');
this._settings = settings;
this._clusterSettings = clusterSettings;