diff --git a/qqq-backend-core/src/main/java/com/kingsrook/qqq/backend/core/actions/async/AsyncJobManager.java b/qqq-backend-core/src/main/java/com/kingsrook/qqq/backend/core/actions/async/AsyncJobManager.java index ae980ea1..6cc317d5 100644 --- a/qqq-backend-core/src/main/java/com/kingsrook/qqq/backend/core/actions/async/AsyncJobManager.java +++ b/qqq-backend-core/src/main/java/com/kingsrook/qqq/backend/core/actions/async/AsyncJobManager.java @@ -159,7 +159,6 @@ public class AsyncJobManager private T runAsyncJob(String jobName, AsyncJob asyncJob, UUIDAndTypeStateKey uuidAndTypeStateKey, AsyncJobStatus asyncJobStatus) { String originalThreadName = Thread.currentThread().getName(); - // Thread.currentThread().setName("Job:" + jobName + ":" + uuidAndTypeStateKey.getUuid().toString().substring(0, 8)); Thread.currentThread().setName("Job:" + jobName); try { diff --git a/qqq-backend-core/src/main/java/com/kingsrook/qqq/backend/core/scheduler/schedulable/runner/SchedulableTableAutomationsRunner.java b/qqq-backend-core/src/main/java/com/kingsrook/qqq/backend/core/scheduler/schedulable/runner/SchedulableTableAutomationsRunner.java index 5a6e0e53..44bd2f20 100644 --- a/qqq-backend-core/src/main/java/com/kingsrook/qqq/backend/core/scheduler/schedulable/runner/SchedulableTableAutomationsRunner.java +++ b/qqq-backend-core/src/main/java/com/kingsrook/qqq/backend/core/scheduler/schedulable/runner/SchedulableTableAutomationsRunner.java @@ -75,10 +75,6 @@ public class SchedulableTableAutomationsRunner implements SchedulableRunner AutomationStatus automationStatus = AutomationStatus.valueOf(ValueUtils.getValueAsString(params.get("automationStatus"))); - ///////////// - // run it. // - ///////////// - LOG.debug("Running table automations", logPair("tableName", tableName), logPair("")); QTableAutomationDetails automationDetails = table.getAutomationDetails(); if(automationDetails == null) { diff --git a/qqq-backend-core/src/main/resources/quartz.properties b/qqq-backend-core/src/main/resources/quartz.properties deleted file mode 100644 index 3dd81314..00000000 --- a/qqq-backend-core/src/main/resources/quartz.properties +++ /dev/null @@ -1,64 +0,0 @@ -# -# QQQ - Low-code Application Framework for Engineers. -# Copyright (C) 2021-2023. Kingsrook, LLC -# 651 N Broad St Ste 205 # 6917 | Middletown DE 19709 | United States -# contact@kingsrook.com -# https://github.com/Kingsrook/ -# -# This program is free software: you can redistribute it and/or modify -# it under the terms of the GNU Affero General Public License as -# published by the Free Software Foundation, either version 3 of the -# License, or (at your option) any later version. -# -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU Affero General Public License for more details. -# -# You should have received a copy of the GNU Affero General Public License -# along with this program. If not, see . - -# -#org.quartz.scheduler.instanceName = MyScheduler -#org.quartz.threadPool.threadCount = 3 -#org.quartz.jobStore.class = org.quartz.simpl.RAMJobStore -# - - - -#============================================================================ -# Configure Main Scheduler Properties -#============================================================================ -org.quartz.scheduler.instanceName = MyClusteredScheduler -org.quartz.scheduler.instanceId = AUTO - -#============================================================================ -# Configure ThreadPool -#============================================================================ -org.quartz.threadPool.class = org.quartz.simpl.SimpleThreadPool -org.quartz.threadPool.threadCount = 5 -org.quartz.threadPool.threadPriority = 5 - -#============================================================================ -# Configure JobStore -#============================================================================ -org.quartz.jobStore.misfireThreshold = 60000 - -org.quartz.jobStore.class = org.quartz.impl.jdbcjobstore.JobStoreTX -org.quartz.jobStore.driverDelegateClass = org.quartz.impl.jdbcjobstore.StdJDBCDelegate -org.quartz.jobStore.useProperties = false -org.quartz.jobStore.dataSource = myDS -org.quartz.jobStore.tablePrefix = QUARTZ_ - -org.quartz.jobStore.isClustered = true -org.quartz.jobStore.clusterCheckinInterval = 20000 - -#============================================================================ -# Configure Datasources -#============================================================================ -org.quartz.dataSource.myDS.driver = com.mysql.cj.jdbc.Driver -org.quartz.dataSource.myDS.URL = jdbc:mysql://localhost:3306/nutrifresh_one -org.quartz.dataSource.myDS.user = root -org.quartz.dataSource.myDS.password = BXca6Bubxf!ECt7sua6L -org.quartz.dataSource.myDS.maxConnections = 5 -org.quartz.dataSource.myDS.validationQuery=select 1 \ No newline at end of file