Skip to content

Commit

Permalink
add the call URL to error messages
Browse files Browse the repository at this point in the history
  • Loading branch information
oganm committed Mar 15, 2023
1 parent 1316b41 commit 3259e16
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion R/body.R
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ gemmaPath <- function(){
} else if (response$status_code == 503) {
stop(call,'\n',response$status_code, ": Service Unavailable. Gemma might be under maintenance.")
} else {
stop("HTTP code ", response$status_code)
stop(call, '\n', "HTTP code ", response$status_code)
}
}

Expand Down

0 comments on commit 3259e16

Please sign in to comment.