Fixing scheduled process context; better thread names; add serverInfo endpoint

This commit is contained in:
2023-01-26 21:55:17 -06:00
parent f0450ef621
commit 4790f55243
6 changed files with 39 additions and 26 deletions

View File

@ -108,7 +108,7 @@ public class RDBMSDeleteAction extends AbstractRDBMSAction implements DeleteInte
catch(Exception e)
{
deleteInput.getAsyncJobCallback().updateStatus("Error running bulk delete via filter. Fetching keys for individual deletes.");
LOG.info("Exception trying to delete by filter query. Moving on to deleting by id now.");
LOG.info("Exception trying to delete by filter query. Moving on to deleting by id now.", e);
deleteInput.setPrimaryKeys(DeleteAction.getPrimaryKeysFromQueryFilter(deleteInput));
}
}