Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -383,6 +383,7 @@ public Response importReport( final @Context UriInfo uriInfo, final @Context Htt
@Produces( APPLICATION_JSON )
public Response doDelete( @Context final UriInfo uriInfo, final BatchDeleteRequest request )
{
logger.info( "Batch delete request: {}", request );
String trackingID = request.getTrackingID();

if ( trackingID == null || request.getStoreKey() == null )
Expand Down Expand Up @@ -414,6 +415,7 @@ public Response doDelete( @Context final UriInfo uriInfo, final BatchDeleteReque
{
paths.add( entry.getPath() );
}
logger.info( "Set batch delete paths: {}", paths );
request.setPaths( paths );
}
catch ( IndyWorkflowException e )
Expand Down