Skip to content
Snippets Groups Projects
Commit 63268e34 authored by kbeyro's avatar kbeyro
Browse files

Filter failed from csv details

parent f66a7a68
Branches
Tags
1 merge request!65Resolve "Prevent users from adding an existing SSH key"
Pipeline #91260 passed
...@@ -482,7 +482,7 @@ public class BulkApplicationServiceImpl implements BulkApplicationService { ...@@ -482,7 +482,7 @@ public class BulkApplicationServiceImpl implements BulkApplicationService {
List<BulkAppDetails> result = new ArrayList<>(); List<BulkAppDetails> result = new ArrayList<>();
bulkDeployment.getEntries().forEach(deployment -> { bulkDeployment.getEntries().forEach(deployment -> {
if(deployment.getState() != BulkDeploymentState.REMOVED) { if(deployment.getState() != BulkDeploymentState.REMOVED && deployment.getState() != BulkDeploymentState.FAILED ) {
try { try {
Long instanceId = Long.valueOf(deployment.getDetails().get(BULK_ENTRY_DETAIL_KEY_APP_INSTANCE_ID)); Long instanceId = Long.valueOf(deployment.getDetails().get(BULK_ENTRY_DETAIL_KEY_APP_INSTANCE_ID));
AppInstance instance = instanceService.find(instanceId).orElseThrow(); AppInstance instance = instanceService.find(instanceId).orElseThrow();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment