Skip to content

Commit 5cfc941

Browse files
author
James Fuqian
committed
camel var name.
1 parent 10f4b82 commit 5cfc941

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

server/src/utils/request.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,9 +38,9 @@ export async function request(config: any, retryFlag: boolean) {
3838
// check for retryable (e.g. 500 & fhir) errors and do retrying...
3939
if (retryFlag && isRetryable(error)) {
4040
console.log("Request failed and is retryable, entering retry process...")
41-
var retry_resp = await do_retry(config)
42-
if (retry_resp) {
43-
resp = retry_resp;
41+
var retryResp = await do_retry(config)
42+
if (retryResp) {
43+
resp = retryResp;
4444
}
4545
}
4646
else {

0 commit comments

Comments
 (0)