From 8e6cc13650341ab6f21ef27d1fa76c9168e2c2cd Mon Sep 17 00:00:00 2001 From: Tyler Barnes Date: Tue, 10 Jan 2023 15:14:29 -0800 Subject: [PATCH] await async handleDeletedNode --- packages/gatsby-source-drupal/src/gatsby-node.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/gatsby-source-drupal/src/gatsby-node.js b/packages/gatsby-source-drupal/src/gatsby-node.js index ab9d72d1fc4d3..e988e0326632f 100644 --- a/packages/gatsby-source-drupal/src/gatsby-node.js +++ b/packages/gatsby-source-drupal/src/gatsby-node.js @@ -405,7 +405,7 @@ ${JSON.stringify(webhookBody, null, 4)}` for (const nodeSyncData of nodesToSync) { if (nodeSyncData.action === `delete`) { - handleDeletedNode({ + await handleDeletedNode({ actions, getNode, cache,