Skip to content

Commit

Permalink
fix: workflow error message
Browse files Browse the repository at this point in the history
  • Loading branch information
DaniAkash committed Mar 11, 2024
1 parent cd360fe commit c35d1f5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/client/workflow.ts
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ export class Workflow extends Lister {
} else if (responseObject.status?.code !== StatusCode.SUCCESS) {
reject(
new Error(
`Workflow Predict failed with response ${responseObject.status?.toString()}`,
`Workflow Predict failed with response ${responseObject.status?.description}`,
),
);
} else {
Expand Down

0 comments on commit c35d1f5

Please sign in to comment.