Skip to content

Commit

Permalink
Merge pull request #47 from Qualys/bug-fix/QINT-16843
Browse files Browse the repository at this point in the history
QINT-16843: Github for WAS | Build is failing when SEVERITY_CHECK is false or DISCOVERY scan is enabled when timeout is reached after scan is launched
  • Loading branch information
qsadhav committed Jan 15, 2024
2 parents 81db24c + fb292ac commit 0648e14
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -257,9 +257,9 @@ public void launchWebApplicationScan() {
if (this.waitForResult) {
logger.info("Qualys task - Fetching scan finished status");
String status = getScanFinishedStatus(scanId);
logger.info("Scan finished status fetched successfully");
boolean buildPassed = true;
if (status != null) {
logger.info("Scan finished status fetched successfully");
Gson gson = new Gson();
QualysWASScanResultParser resultParser = new QualysWASScanResultParser(gson.toJson(getCriteriaAsJsonObject()), client);
logger.info("Qualys task - Fetching scan result");
Expand Down

0 comments on commit 0648e14

Please sign in to comment.