mirror of
https://github.com/status-im/spiff-arena.git
synced 2025-01-13 11:44:28 +00:00
1d79d77686
* some debug code and potential fixes to avoid requeueing future tasks w/ burnettk * actually insert the queued time into the future task table w/ burnettk * fixed tests w/ burnettk * handle missing process instances better from celery worker and updated some comments w/ burnettk * added comment w/ burnettk * minor fixes w/ burnettk * added test for should_schedule_waiting_timer_events w/ burnettk * added test to ensure we do not queue recently queued tasks again w/ burnettk * remove traceback code --------- Co-authored-by: jasquat <jasquat@users.noreply.github.com> Co-authored-by: burnettk <burnettk@users.noreply.github.com>
21 lines
594 B
Bash
Executable File
21 lines
594 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
function error_handler() {
|
|
echo >&2 "Exited with BAD EXIT CODE '${2}' in ${0} script at line: ${1}."
|
|
exit "$2"
|
|
}
|
|
trap 'error_handler ${LINENO} $?' ERR
|
|
set -o errtrace -o errexit -o nounset -o pipefail
|
|
|
|
script_dir="$(
|
|
cd -- "$(dirname "$0")" >/dev/null 2>&1
|
|
pwd -P
|
|
)"
|
|
. "${script_dir}/local_development_environment_setup"
|
|
|
|
export SPIFFWORKFLOW_BACKEND_CELERY_ENABLED=true
|
|
|
|
poetry run celery -A src.spiffworkflow_backend.background_processing.celery_worker purge -f
|
|
|
|
# poetry run celery -A src.spiffworkflow_backend.background_processing.celery_worker inspect active
|