Skip to content

Commit

Permalink
fix(seatool deletes): Fix bug where delete events in seatool were not…
Browse files Browse the repository at this point in the history
… being processed correctly, due to a return in place of a continue. (#370)
  • Loading branch information
mdial89f authored Feb 8, 2024
1 parent a06ab68 commit 3406a9b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/services/data/handlers/sinkSeatool.ts
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,8 @@ export const seatool_main = async (event: KafkaEvent) => {
submissionDate: null,
subject: null,
};
return;
console.log(`SEATOOL DELETE EVENT: ${id}`);
continue;
}

// Handle everything else
Expand Down

0 comments on commit 3406a9b

Please sign in to comment.