Skip to content

Commit

Permalink
fix non-timeout error handling (#1547)
Browse files Browse the repository at this point in the history
  • Loading branch information
codaimaster authored Aug 17, 2023
1 parent 1b00774 commit 3a3974c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@hmcts/ccd-case-ui-toolkit",
"version": "6.19.2-RetryCaseRetrievals.2",
"version": "6.19.3-RetryCaseRetrievals.1",
"engines": {
"yarn": "^3.5.0",
"npm": "^8.10.0"
Expand Down
2 changes: 1 addition & 1 deletion projects/ccd-case-ui-toolkit/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@hmcts/ccd-case-ui-toolkit",
"version": "6.19.2-RetryCaseRetrievals.2",
"version": "6.19.3-RetryCaseRetrievals.1",
"engines": {
"yarn": "^3.5.0",
"npm": "^8.10.0"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ export class RetryUtil {
}
else {
console.error('Will NOT retry.');
throwError(error);
throw error;
}
return timer(0);
}),
Expand Down

0 comments on commit 3a3974c

Please sign in to comment.