Skip to content

Commit 19d3861

Browse files
fix(gatsby-source-drupal): await async handleDeletedNode (#37435) (#37458)
await async handleDeletedNode (cherry picked from commit e575a0a) Co-authored-by: Tyler Barnes <tylerdbarnes@gmail.com>
1 parent b229e7b commit 19d3861

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/gatsby-source-drupal/src/gatsby-node.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -405,7 +405,7 @@ ${JSON.stringify(webhookBody, null, 4)}`
405405

406406
for (const nodeSyncData of nodesToSync) {
407407
if (nodeSyncData.action === `delete`) {
408-
handleDeletedNode({
408+
await handleDeletedNode({
409409
actions,
410410
getNode,
411411
cache,

0 commit comments

Comments
 (0)