catch (Exception ex) {
LOG.warn("Exception happened when pausing/unpausing Coordinator jobs", ex);
}
// unpause coordinators as needed;
try {
jobList = jpaService.execute(new CoordJobsGetPausedJPAExecutor(-1));
if (jobList != null) {
for (CoordinatorJobBean coordJob : jobList) {
// if namespace 0.1 is used and backward support is true, then ignore this coord job
if (backwardSupportForCoordStatus == true && coordJob.getAppNamespace() != null
&& coordJob.getAppNamespace().equals(SchemaService.COORDINATOR_NAMESPACE_URI_1)) {