Skip to content

Commit

Permalink
Merge pull request crossbario#296 from oberstet/master
Browse files Browse the repository at this point in the history
rel-17.5.1
  • Loading branch information
oberstet authored May 1, 2017
2 parents 5e81c3c + 61bc85d commit 0630003
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 5 deletions.
7 changes: 5 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,14 @@ default:

clean:
rm -rf build
#rm -rf ./node_modules
#rm -f .sconsign.dblite

dist_clean: clean
rm -rf ./node_modules
rm -f .sconsign.dblite

requirements:
pip install -U scons boto taschenmesser
sudo apt update
sudo apt install -y npm nodejs-legacy default-jre
node -v
sudo npm install -g google-closure-compiler nodeunit
Expand Down
7 changes: 5 additions & 2 deletions lib/session.js
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,8 @@ var Event = function (publication,
topic,
publisher,
publisher_authid,
publisher_authrole) {
publisher_authrole,
retained) {

var self = this;

Expand All @@ -95,6 +96,7 @@ var Event = function (publication,
self.publisher = publisher;
self.publisher_authid = publisher_authid;
self.publisher_authrole = publisher_authrole;
self.retained = retained;
};


Expand Down Expand Up @@ -500,7 +502,8 @@ var Session = function (socket, defer, onchallenge) {
details.topic || (subs[0] && subs[0].topic),
details.publisher,
details.publisher_authid,
details.publisher_authrole
details.publisher_authrole,
details.retained || false
);

for (var i = 0; i < subs.length; ++i) {
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "autobahn",
"version": "0.12.0",
"version": "17.5.1",
"description": "An implementation of The Web Application Messaging Protocol (WAMP).",
"main": "index.js",
"scripts": {
Expand Down

0 comments on commit 0630003

Please sign in to comment.