@brandboostinggmbh/observable-workflows 0.17.6 → 0.17.7
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.
- package/dist/index.js +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -779,7 +779,7 @@ const createLogAccessor = (context) => {
|
|
|
779
779
|
})));
|
|
780
780
|
if (options?.populateProperties && workflows.length > 0) {
|
|
781
781
|
const instanceIds = workflows.map((w) => w.instanceId);
|
|
782
|
-
const BATCH_SIZE =
|
|
782
|
+
const BATCH_SIZE = 80;
|
|
783
783
|
const propertiesByInstanceId = new Map();
|
|
784
784
|
for (let i = 0; i < instanceIds.length; i += BATCH_SIZE) {
|
|
785
785
|
const batchIds = instanceIds.slice(i, i + BATCH_SIZE);
|