You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Return 404 Not Found when the workflow type endpoint is requested for a workflow that does not exist. Previously, getWorkflowType dereferenced a null DAO result and returned 500 Internal Server Error.
This fix: PR was checked against each actively-supported release branch. release/* labels drive the post-merge backport, so add or remove one to change where this fix lands.
Release branch
Analysis
✅ release/v1.3
Change detected on this branch — label added; this fix is queued to backport here. Requested review from @mengw15.
✅ release/v1.2
Change detected on this branch — label added; this fix is queued to backport here. Requested review from @xuang7.
Compared against main 1cbe857 benchmarked on this same runner, so the delta is largely free of cross-runner hardware noise. The "7d avg" column still reflects the gh-pages dashboard. Treat <±5% as noise unless repeated.
✅ All modified and coverable lines are covered by tests.
✅ Project coverage is 94.06%. Comparing base (1cbe857) to head (3608088).
✅ All tests successful. No failed tests found.
📦 JS Bundle Analysis: Save yourself from yourself by tracking and limiting bundle sizes in JS merges.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
What changes were proposed in this PR?
Return
404 Not Foundwhen the workflow type endpoint is requested for a workflow that does not exist. Previously,getWorkflowTypedereferenced a null DAO result and returned500 Internal Server Error.Before:

After:

Any related issues, documentation, discussions?
Closes #8300
How was this PR tested?
WorkflowResourceSpecGET /api/workflow/type/2147483647returns404instead of500Was this PR authored or co-authored using generative AI tooling?
Generated-by: ChatGPT (5.5 mini)