-
Notifications
You must be signed in to change notification settings - Fork 587
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
test: throw final error in turbo script #6594
Conversation
This comment was marked as outdated.
This comment was marked as outdated.
@@ -28,10 +28,7 @@ const runTurbo = async (task, args, { apiSecret, apiEndpoint, apiSignatureKey } | |||
}); | |||
} catch (error) { | |||
console.error("Error running turbo:", error); | |||
if (args?.length > 0) { | |||
// Retry without additional filters | |||
return await runTurbo(task, null, apiSecret, apiEndpoint); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
the null
never worked since args
is spread above. And now, the arguments structure is different anyway.
This thread has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue for related bugs and link to relevant comments in this thread. |
Throw the final error in the Turbo wrapper script instead of only logging it.
Internal JS-5525