diff options
Diffstat (limited to 'js/test/Ice/binding/Client.js')
-rw-r--r-- | js/test/Ice/binding/Client.js | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/js/test/Ice/binding/Client.js b/js/test/Ice/binding/Client.js index ecba375108b..0e59e8256c7 100644 --- a/js/test/Ice/binding/Client.js +++ b/js/test/Ice/binding/Client.js @@ -260,7 +260,7 @@ ).then( function(conn) { - return conn.close(false); + return conn.close(Ice.ConnectionClose.CloseGracefullyAndWait); } ).then( function() @@ -339,7 +339,7 @@ }).then( function(c) { - return c.close(false); + return c.close(Ice.ConnectionClose.CloseGracefullyAndWait); } ); })); @@ -422,7 +422,7 @@ ).then( function(conn) { - return conn.close(false); + return conn.close(Ice.ConnectionClose.CloseGracefullyAndWait); } ).then( function() @@ -585,7 +585,7 @@ }).then( function(c) { - return c.close(false); + return c.close(Ice.ConnectionClose.CloseGracefullyAndWait); }, function(ex) { @@ -651,7 +651,7 @@ } return prx.ice_getConnection(); } - ).then(conn => conn.close(false) + ).then(conn => conn.close(Ice.ConnectionClose.CloseGracefullyAndWait) ).then(() => names.length > 0 ? f1() : prx); }; @@ -678,7 +678,7 @@ ).then( function(conn) { - return conn.close(false); + return conn.close(Ice.ConnectionClose.CloseGracefullyAndWait); } ).then( function() |