Skip to content

Commit

Permalink
TraceViewerContribution: Fix this error assignment
Browse files Browse the repository at this point in the history
As previously flagged by SonarLint locally.

Signed-off-by: Marco Miller <marco.miller@ericsson.com>
  • Loading branch information
marco-miller committed Mar 20, 2023
1 parent 32cebc9 commit 432b74c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -272,7 +272,7 @@ export class TraceViewerContribution extends WidgetOpenHandler<TraceViewerWidget
}
error = new Error('Unsuccessful health check: ' + healthResponse.getStatusMessage() + ' status: ' + healthResponse.getModel()?.status);
} catch (err) {
error = error;
error = err;
}
if (timeout) {
throw error;
Expand Down

0 comments on commit 432b74c

Please sign in to comment.