Skip to content

fix: skip metrics submission on fatal generation errors (fixes #2010)#2127

Open
armorbreak001 wants to merge 1 commit intoasyncapi:masterfrom
armorbreak001:fix/2010-suppress-metrics-on-fatal-error
Open

fix: skip metrics submission on fatal generation errors (fixes #2010)#2127
armorbreak001 wants to merge 1 commit intoasyncapi:masterfrom
armorbreak001:fix/2010-suppress-metrics-on-fatal-error

Conversation

@armorbreak001
Copy link
Copy Markdown

Summary

When a command fails with an error, the finally() handler still attempted to submit anonymous usage metrics via recordActionFinished(). This could fail independently (e.g. network error when flushing to NewRelic), producing a misleading secondary error message that obscures the actual cause of failure.

Changes

  • src/apps/cli/internal/base.ts: In finally(), return early when error is set instead of proceeding to record metrics. This ensures only the real error is shown to the user.

Reproduction (from issue)

mkdir out && echo test > out/file.txt
asyncapi generate asyncapi.yaml @asyncapi/html-template --output ./out

Before: Two errors — the real one plus Skipping submitting anonymous metrics due to the following error: TypeError: fetch failed
After: Only the actual generator error is displayed.

…pi#2010)

When a command fails with an error, the finally() handler still attempted
to submit anonymous usage metrics, which could fail and produce a
misleading secondary error message. Skip metrics recording entirely
on failure so only the actual error is shown to the user.
@changeset-bot
Copy link
Copy Markdown

changeset-bot Bot commented Apr 21, 2026

⚠️ No Changeset found

Latest commit: 041cc3a

Merging this PR will not cause a version bump for any packages. If these changes should not result in a new version, you're good to go. If these changes should result in a version bump, you need to add a changeset.

This PR includes no changesets

When changesets are added to this PR, you'll see the packages that this PR includes changesets for and the associated semver types

Click here to learn what changesets are, and how to add one.

Click here if you're a maintainer who wants to add a changeset to this PR

@sonarqubecloud
Copy link
Copy Markdown

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

Status: To Triage

Development

Successfully merging this pull request may close these issues.

1 participant