Skip to content

Commit 7883b90

Browse files
authored
Merge branch 'main' into feature/QINT-18550
2 parents 12d7d36 + b0fc3a7 commit 7883b90

2 files changed

Lines changed: 2 additions & 1 deletion

File tree

src/main/java/com/example/GitHubActionsQWas/service/QualysWASScanBuilder.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -243,9 +243,9 @@ public void launchWebApplicationScan() {
243243
if (this.cancelOptions) {
244244
message1 += ", 'CANCEL_OPTION:" + cancelOptions + "', 'CANCEL_HOURS:" + cancelHours + " hrs'";
245245
}
246-
247246
String message2 = "Scan successfully launched with scan id: " + scanId + " and scan name: " + service.getScanName();
248247
String message3 = "To check scan result on Qualys UI, please follow the url. Note that, scan result URL will work with New WAS UI only: " + portalServer + "/was/#/reports/online-reports/email-report/scan/" + scanId;
248+
249249
logger.info(message1);
250250
logger.info(message2);
251251
if (this.waitForResult) {

src/main/java/com/example/GitHubActionsQWas/service/QualysWASScanStatusService.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ public String fetchScanStatus(String scanId, String scanType, boolean severityCh
3232
if ((endTime - startTime) > timeoutInMillis) {
3333
String message1 = "Failed to get scan result; timeout of " + TimeUnit.SECONDS.toMinutes(TIMEOUT) + " minutes reached.";
3434
String message2 = "To check scan result on Qualys UI, please follow the url. Note that, scan result URL will work with New WAS UI only: " + portalUrl + "/was/#/reports/online-reports/email-report/scan/" + scanId;
35+
3536
logger.info(message1);
3637
logger.info(message2);
3738
if (scanType.equalsIgnoreCase("vulnerability") && severityCheck) {

0 commit comments

Comments
 (0)