@luvio/environments 0.121.1-242.2 → 0.121.1-242.3
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.
|
@@ -769,9 +769,9 @@ function makeDurable(environment, { durableStore, instrumentation }) {
|
|
|
769
769
|
ingestStagingStore = buildIngestStagingStore(environment);
|
|
770
770
|
publishDurableStoreEntries(entries, (key, record) => {
|
|
771
771
|
ingestStagingStore.records[key] = record;
|
|
772
|
-
},
|
|
773
|
-
|
|
774
|
-
|
|
772
|
+
}, (key, metadata) => {
|
|
773
|
+
ingestStagingStore.metadata[key] = metadata;
|
|
774
|
+
});
|
|
775
775
|
snapshotFromMemoryIngest = ingestAndBroadcastFunc();
|
|
776
776
|
await publishChangesToDurableStore();
|
|
777
777
|
})();
|
|
@@ -773,9 +773,9 @@
|
|
|
773
773
|
ingestStagingStore = buildIngestStagingStore(environment);
|
|
774
774
|
publishDurableStoreEntries(entries, (key, record) => {
|
|
775
775
|
ingestStagingStore.records[key] = record;
|
|
776
|
-
},
|
|
777
|
-
|
|
778
|
-
|
|
776
|
+
}, (key, metadata) => {
|
|
777
|
+
ingestStagingStore.metadata[key] = metadata;
|
|
778
|
+
});
|
|
779
779
|
snapshotFromMemoryIngest = ingestAndBroadcastFunc();
|
|
780
780
|
await publishChangesToDurableStore();
|
|
781
781
|
})();
|
|
@@ -895,9 +895,9 @@
|
|
|
895
895
|
ingestStagingStore = buildIngestStagingStore(environment);
|
|
896
896
|
publishDurableStoreEntries(entries, function (key, record) {
|
|
897
897
|
ingestStagingStore.records[key] = record;
|
|
898
|
-
},
|
|
899
|
-
|
|
900
|
-
|
|
898
|
+
}, function (key, metadata) {
|
|
899
|
+
ingestStagingStore.metadata[key] = metadata;
|
|
900
|
+
});
|
|
901
901
|
snapshotFromMemoryIngest = ingestAndBroadcastFunc();
|
|
902
902
|
return [4 /*yield*/, publishChangesToDurableStore()];
|
|
903
903
|
case 3:
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@luvio/environments",
|
|
3
|
-
"version": "0.121.1-242.
|
|
3
|
+
"version": "0.121.1-242.3",
|
|
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.121.1-242.
|
|
26
|
+
"@luvio/engine": "0.121.1-242.3"
|
|
27
27
|
},
|
|
28
28
|
"bundlesize": [
|
|
29
29
|
{
|
|
@@ -40,6 +40,5 @@
|
|
|
40
40
|
]
|
|
41
41
|
}
|
|
42
42
|
}
|
|
43
|
-
}
|
|
44
|
-
"gitHead": "32c5de04652b54ddb3f663f91245cf189863598d"
|
|
43
|
+
}
|
|
45
44
|
}
|