We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ac11684 commit 90b0b95Copy full SHA for 90b0b95
services/static-webserver/client/source/class/osparc/auth/Manager.js
@@ -212,9 +212,13 @@ qx.Class.define("osparc.auth.Manager", {
212
"client_session_id": osparc.utils.Utils.getClientSessionID()
213
}
214
};
215
- return osparc.data.Resources.fetch("auth", "postLogout", params)
+ const options = {
216
+ timeout: 5000,
217
+ timeoutRetries: 5
218
+ };
219
+ return osparc.data.Resources.fetch("auth", "postLogout", params, options)
220
.then(() => this.fireEvent("loggedOut"))
- .catch(error => console.log("already logged out"))
221
+ .catch(() => console.log("already logged out"))
222
.finally(this.__logoutUser());
223
},
224
0 commit comments