summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--js/src/Ice/ConnectionI.js2
-rw-r--r--js/src/Ice/IncomingAsync.js2
2 files changed, 2 insertions, 2 deletions
diff --git a/js/src/Ice/ConnectionI.js b/js/src/Ice/ConnectionI.js
index 4a7ff409382..7b40227b0eb 100644
--- a/js/src/Ice/ConnectionI.js
+++ b/js/src/Ice/ConnectionI.js
@@ -1946,7 +1946,7 @@ class ConnectionI
// Attempt to log the error and clean up.
//
this._logger.error("unexpected exception:\n" + ex.toString());
- this.invokeException(requestId, new Ice.UnknownException(ex), invokeNum, false);
+ this.invokeException(new Ice.UnknownException(ex), invokeNum);
}
}
}
diff --git a/js/src/Ice/IncomingAsync.js b/js/src/Ice/IncomingAsync.js
index d7f83c3058c..6fb419ce9a9 100644
--- a/js/src/Ice/IncomingAsync.js
+++ b/js/src/Ice/IncomingAsync.js
@@ -506,7 +506,7 @@ class IncomingAsync
{
try
{
- if(this._locator !== null && !this.servantLocatorFinished(amd))
+ if(this._locator !== null)
{
Debug.assert(this._locator !== null && this._servant !== null);
try