diff options
author | Jose <jose@zeroc.com> | 2014-10-14 09:47:22 +0200 |
---|---|---|
committer | Jose <jose@zeroc.com> | 2014-10-14 09:47:22 +0200 |
commit | b501d3513f40364e7ff784db8006c8e31993fd41 (patch) | |
tree | 7d73dacf4882a8943e6d1240a04d9042362dd668 /js/demo/ChatDemo/Client.js | |
parent | updating CHANGES for JS AsyncResult (diff) | |
download | ice-b501d3513f40364e7ff784db8006c8e31993fd41.tar.bz2 ice-b501d3513f40364e7ff784db8006c8e31993fd41.tar.xz ice-b501d3513f40364e7ff784db8006c8e31993fd41.zip |
Fixed (ICE-5733) - NodeJS demos don't parse argv
Diffstat (limited to 'js/demo/ChatDemo/Client.js')
-rw-r--r-- | js/demo/ChatDemo/Client.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/js/demo/ChatDemo/Client.js b/js/demo/ChatDemo/Client.js index 3912cfdcecf..a982a52da32 100644 --- a/js/demo/ChatDemo/Client.js +++ b/js/demo/ChatDemo/Client.js @@ -106,7 +106,7 @@ var signin = function() id.properties = Ice.createProperties(); id.properties.setProperty("Ice.Default.Router", "Glacier2/router:wss -p 9090 -h " + hostname + " -r /chatwss"); - communicator = Ice.initialize(id); + communicator = Ice.initialize(process.argv, id); // // Get a proxy to the Glacier2 router using checkedCast to ensure |