Skip to content

Commit

Permalink
fix: update error status on Dust piece to match changes in the API
Browse files Browse the repository at this point in the history
  • Loading branch information
Blightwidow committed Jan 22, 2025
1 parent ee73ec1 commit a94c93c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/pieces/community/dust/src/lib/common.ts
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ export async function getConversationContent(
let retries = 0;
const maxRetries = timeout / 10;
while (
!['succeeded', 'errored'].includes(
!['succeeded', 'failed'].includes(
getConversationStatus(conversation.body)
) &&
retries < maxRetries
Expand Down

0 comments on commit a94c93c

Please sign in to comment.