Configuration conf = Services.get().getConf();
boolean backwardSupportForCoordStatus = conf.getBoolean(StatusTransitService.CONF_BACKWARD_SUPPORT_FOR_COORD_STATUS, false);
// pause coordinators as needed;
try {
jobList = jpaService.execute(new CoordJobsGetUnpausedJPAExecutor(-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)) {