Skip to content

Commit

Permalink
Make compile use query in options, similar to loadContextSocket
Browse files Browse the repository at this point in the history
  • Loading branch information
n3ps committed Apr 21, 2017
1 parent 0a0d16b commit 201d5f2
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions lib/engine_socketio.js
Original file line number Diff line number Diff line change
Expand Up @@ -273,10 +273,12 @@ SocketIoEngine.prototype.compile = function (tasks, scenarioSpec, ee) {
let tls = config.tls || {};
let transports = self.transports || {};
let path = self.path || {};
let query = self.query || {};
let options = _.extend(
{},
tls,
transports,
query,
path
);
ee.emit('started');
Expand Down

0 comments on commit 201d5f2

Please sign in to comment.