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 776b32c commit 899f509Copy full SHA for 899f509
services/static-webserver/client/source/class/osparc/store/Services.js
@@ -391,10 +391,10 @@ qx.Class.define("osparc.store.Services", {
391
// some services that go to the cache are not complete, e.g. study services
392
// if the one in the cache is the complete one, do not overwrite it
393
if (
394
- key in this.__servicesCached[key] &&
395
- version in this.__servicesCached[key] &&
396
- this.__servicesCached[key][version]["inputs"]
+ this.__isInCache(key, version) &&
+ "inputs" in this.__servicesCached[key][version]
397
) {
+ console.log("don't save", this.__servicesCached[key][version], value);
398
return;
399
}
400
this.__servicesCached[key][version] = value;
0 commit comments