Skip to content

Commit

Permalink
check secondary valid status codes too
Browse files Browse the repository at this point in the history
  • Loading branch information
Dorin Bogdan committed Sep 12, 2023
1 parent 5714398 commit 227793e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/resources/templates/uft/runFromFileSystemTask.ftl
Original file line number Diff line number Diff line change
Expand Up @@ -244,7 +244,7 @@
}
} else if (dataJSON.status) {
var status = dataJSON.status;
if (status != 200) {
if (status != 200 && status != 201 && status != 202) {
openMCBtn.disabled = false;
let err = dataJSON.error;
if (status > 0)
Expand Down

0 comments on commit 227793e

Please sign in to comment.