-
Notifications
You must be signed in to change notification settings - Fork 46
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feature/skip-user-input-required-tasks (#596)
* only check for timer events in ready_user_task_has_associated_timer so we can skip user_input_required instances w/ burnettk * removed test.py file w/ burnettk --------- Co-authored-by: jasquat <[email protected]>
- Loading branch information
Showing
2 changed files
with
31 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
#!/usr/bin/env bash | ||
|
||
function error_handler() { | ||
>&2 echo "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_RUN_BACKGROUND_SCHEDULER_IN_CREATE_APP=false | ||
|
||
poet run python "$@" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters