Fixed failing samples
Updated uuid/webpack packages Added froze on objects publicly exposed Removed remaining while loops for actions/events processing
This commit is contained in:
@ -2,7 +2,7 @@ var esClient = require('../src/client'); // When running in 'eventstore-nod
|
||||
// var esClient = require('eventstore-node'); // Otherwise
|
||||
var uuid = require('uuid');
|
||||
|
||||
var esConnection = esClient.createConnection({}, {"hostname": "localhost", "port": 1113});
|
||||
var esConnection = esClient.createConnection({}, {"host": "localhost", "port": 1113});
|
||||
esConnection.connect();
|
||||
esConnection.once('connected', function (tcpEndPoint) {
|
||||
console.log('Connected to eventstore at ' + tcpEndPoint.host + ":" + tcpEndPoint.port);
|
||||
|
@ -6,7 +6,7 @@ var esClient = require('../src/client'); // When running in 'eventstore-no
|
||||
const credentialsForAllEventsStream = new esClient.UserCredentials("admin", "changeit");
|
||||
const resolveLinkTos = false;
|
||||
|
||||
var esConnection = esClient.createConnection({}, {"hostname": "localhost", "port": 1113});
|
||||
var esConnection = esClient.createConnection({}, {"host": "localhost", "port": 1113});
|
||||
esConnection.connect();
|
||||
esConnection.once('connected', function (tcpEndPoint) {
|
||||
console.log('Connected to eventstore at ' + tcpEndPoint.host + ":" + tcpEndPoint.port);
|
||||
|
@ -6,7 +6,7 @@ var esClient = require('../src/client'); // When running in 'eventstore-no
|
||||
|
||||
const credentialsForAllEventsStream = new esClient.UserCredentials("admin", "changeit");
|
||||
|
||||
var esConnection = esClient.createConnection({}, {"hostname": "localhost", "port": 1113});
|
||||
var esConnection = esClient.createConnection({}, {"host": "localhost", "port": 1113});
|
||||
esConnection.connect();
|
||||
esConnection.once('connected', function (tcpEndPoint) {
|
||||
console.log('Connected to eventstore at ' + tcpEndPoint.host + ":" + tcpEndPoint.port);
|
||||
|
Reference in New Issue
Block a user