@luvio/environments 0.138.6 → 0.138.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -746,7 +746,8 @@ function makeDurable(environment, { durableStore, instrumentation }) {
|
|
|
746
746
|
for (const cacheKeyMapKey of cacheKeyMapKeys) {
|
|
747
747
|
const cacheKey = cacheKeyMap.get(cacheKeyMapKey);
|
|
748
748
|
if (cacheKey.mergeable === true) {
|
|
749
|
-
|
|
749
|
+
const canonical = environment.storeGetCanonicalKey(cacheKeyMapKey);
|
|
750
|
+
keysToRevive.add(canonical);
|
|
750
751
|
}
|
|
751
752
|
}
|
|
752
753
|
let snapshotFromMemoryIngest = undefined;
|
|
@@ -750,7 +750,8 @@
|
|
|
750
750
|
for (const cacheKeyMapKey of cacheKeyMapKeys) {
|
|
751
751
|
const cacheKey = cacheKeyMap.get(cacheKeyMapKey);
|
|
752
752
|
if (cacheKey.mergeable === true) {
|
|
753
|
-
|
|
753
|
+
const canonical = environment.storeGetCanonicalKey(cacheKeyMapKey);
|
|
754
|
+
keysToRevive.add(canonical);
|
|
754
755
|
}
|
|
755
756
|
}
|
|
756
757
|
let snapshotFromMemoryIngest = undefined;
|
|
@@ -868,7 +868,7 @@
|
|
|
868
868
|
};
|
|
869
869
|
var handleSuccessResponse = function (ingestAndBroadcastFunc, getResponseCacheKeysFunc) {
|
|
870
870
|
return __awaiter(this, void 0, void 0, function () {
|
|
871
|
-
var cacheKeyMap, cacheKeyMapKeys, keysToRevive, _i, cacheKeyMapKeys_1, cacheKeyMapKey, cacheKey, snapshotFromMemoryIngest, keysToReviveAsArray, readWritePromise, _a, keysToReviveAsArray_1, key, _b, keysToReviveAsArray_2, key, pendingPromise, _c, select, refresh, result;
|
|
871
|
+
var cacheKeyMap, cacheKeyMapKeys, keysToRevive, _i, cacheKeyMapKeys_1, cacheKeyMapKey, cacheKey, canonical, snapshotFromMemoryIngest, keysToReviveAsArray, readWritePromise, _a, keysToReviveAsArray_1, key, _b, keysToReviveAsArray_2, key, pendingPromise, _c, select, refresh, result;
|
|
872
872
|
var _this = this;
|
|
873
873
|
return __generator(this, function (_d) {
|
|
874
874
|
switch (_d.label) {
|
|
@@ -881,7 +881,8 @@
|
|
|
881
881
|
cacheKeyMapKey = cacheKeyMapKeys_1[_i];
|
|
882
882
|
cacheKey = cacheKeyMap.get(cacheKeyMapKey);
|
|
883
883
|
if (cacheKey.mergeable === true) {
|
|
884
|
-
|
|
884
|
+
canonical = environment.storeGetCanonicalKey(cacheKeyMapKey);
|
|
885
|
+
keysToRevive.add(canonical);
|
|
885
886
|
}
|
|
886
887
|
}
|
|
887
888
|
snapshotFromMemoryIngest = undefined;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@luvio/environments",
|
|
3
|
-
"version": "0.138.
|
|
3
|
+
"version": "0.138.8",
|
|
4
4
|
"description": "Luvio Environments",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -23,7 +23,7 @@
|
|
|
23
23
|
"watch": "yarn build --watch"
|
|
24
24
|
},
|
|
25
25
|
"dependencies": {
|
|
26
|
-
"@luvio/engine": "^0.138.
|
|
26
|
+
"@luvio/engine": "^0.138.8"
|
|
27
27
|
},
|
|
28
28
|
"volta": {
|
|
29
29
|
"extends": "../../../package.json"
|