Skip to content

Commit 9c9e9cf

Browse files
committed
fix: filter child attributes from await pools
1 parent 7ed5485 commit 9c9e9cf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

templates/cli/lib/commands/push.js.twig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -882,7 +882,7 @@ const createAttributes = async (attributes, collection) => {
882882
const result = await awaitPools.expectAttributes(
883883
collection['databaseId'],
884884
collection['$id'],
885-
collection.attributes.map(attribute => attribute.key)
885+
collection.attributes.filter(attribute => attribute.side !== 'child').map(attribute => attribute.key)
886886
);
887887

888888
if (!result) {

0 commit comments

Comments
 (0)