-
Notifications
You must be signed in to change notification settings - Fork 5
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
EPMRPP-90918 || Jobs should skip important #136
Conversation
Quality Gate passedIssues Measures |
final List<Long> launchIds = getLaunchIds(projectId, lessThanDate); | ||
if (!launchIds.isEmpty()) { | ||
deleteClusters(launchIds); | ||
// final Long numberOfLaunchElements = countNumberOfLaunchElements(launchIds); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Line is longer than 100 characters (found 115).
final List<Long> launchIds = getLaunchIds(projectId, lessThanDate); | ||
if (!launchIds.isEmpty()) { | ||
deleteClusters(launchIds); | ||
// final Long numberOfLaunchElements = countNumberOfLaunchElements(launchIds); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Line contains a tab character.
} | ||
}); | ||
} | ||
// eventPublisher.publishEvent(new ElementsDeletedEvent(launchIds, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Line is longer than 100 characters (found 111).
} | ||
}); | ||
} | ||
// eventPublisher.publishEvent(new ElementsDeletedEvent(launchIds, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Line contains a tab character.
}); | ||
} | ||
// eventPublisher.publishEvent(new ElementsDeletedEvent(launchIds, | ||
// projectId, numberOfLaunchElements)); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Line contains a tab character.
} | ||
// eventPublisher.publishEvent(new ElementsDeletedEvent(launchIds, | ||
// projectId, numberOfLaunchElements)); | ||
// LOGGER.info("Send event with elements deleted number {} for |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Line contains a tab character.
// eventPublisher.publishEvent(new ElementsDeletedEvent(launchIds, | ||
// projectId, numberOfLaunchElements)); | ||
// LOGGER.info("Send event with elements deleted number {} for | ||
// project {}", deleted, projectId); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Line contains a tab character.
DELETE FROM log | ||
WHERE log.project_id = ? AND log.log_time <= ?::TIMESTAMP | ||
AND COALESCE(log.launch_id, | ||
(SELECT test_item.launch_id FROM test_item WHERE test_item.item_id = log.item_id), |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Line is longer than 100 characters (found 103).
AND COALESCE(log.launch_id, | ||
(SELECT test_item.launch_id FROM test_item WHERE test_item.item_id = log.item_id), | ||
(SELECT test_item.launch_id FROM test_item WHERE test_item.item_id = | ||
(SELECT ti.retry_of FROM test_item ti WHERE ti.item_id = log.item_id) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Line is longer than 100 characters (found 139).
SELECT id FROM launch WHERE retention_policy='REGULAR' | ||
)\s | ||
RETURNING * | ||
) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Line contains a tab character.
No description provided.