updated SpiffWorkflow for depth fix (#519)
Co-authored-by: jasquat <jasquat@users.noreply.github.com>
This commit is contained in:
parent
10fa556525
commit
a84750741e
|
@ -2365,8 +2365,8 @@ lxml = "*"
|
||||||
[package.source]
|
[package.source]
|
||||||
type = "git"
|
type = "git"
|
||||||
url = "https://github.com/sartography/SpiffWorkflow"
|
url = "https://github.com/sartography/SpiffWorkflow"
|
||||||
reference = "temp/short-term-max-depth-fix"
|
reference = "main"
|
||||||
resolved_reference = "56f0ba545b2c0f16a4ce7afac951fd3694fb9040"
|
resolved_reference = "92a7fdc7c9f4afb232f95c0e2d9008049949b92d"
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "sqlalchemy"
|
name = "sqlalchemy"
|
||||||
|
@ -2795,4 +2795,4 @@ tests-strict = ["codecov (==2.0.15)", "pytest (==4.6.0)", "pytest (==4.6.0)", "p
|
||||||
[metadata]
|
[metadata]
|
||||||
lock-version = "2.0"
|
lock-version = "2.0"
|
||||||
python-versions = ">=3.10,<3.12"
|
python-versions = ">=3.10,<3.12"
|
||||||
content-hash = "52d201da1a56af3fad40ecd730548993d93a45023d4a94471112adf4e9bd54b5"
|
content-hash = "38add9297ce0c445da94865bbdf82bb37c95b57e056ec195b3c68704236fcec5"
|
||||||
|
|
|
@ -29,7 +29,7 @@ flask-migrate = "*"
|
||||||
flask-restful = "*"
|
flask-restful = "*"
|
||||||
flask-simple-crypt = "^0.3.3"
|
flask-simple-crypt = "^0.3.3"
|
||||||
werkzeug = "*"
|
werkzeug = "*"
|
||||||
SpiffWorkflow = {git = "https://github.com/sartography/SpiffWorkflow", rev = "temp/short-term-max-depth-fix"}
|
SpiffWorkflow = {git = "https://github.com/sartography/SpiffWorkflow", rev = "main"}
|
||||||
# SpiffWorkflow = {develop = true, path = "../../spiffworkflow/" }
|
# SpiffWorkflow = {develop = true, path = "../../spiffworkflow/" }
|
||||||
# SpiffWorkflow = {develop = true, path = "../../SpiffWorkflow/" }
|
# SpiffWorkflow = {develop = true, path = "../../SpiffWorkflow/" }
|
||||||
sentry-sdk = "^1.10"
|
sentry-sdk = "^1.10"
|
||||||
|
|
|
@ -249,7 +249,6 @@ class TaskModelSavingDelegate(EngineStepDelegate):
|
||||||
# but it didn't quite work in all cases, so we deleted it. you can find it in commit
|
# but it didn't quite work in all cases, so we deleted it. you can find it in commit
|
||||||
# 1ead87b4b496525df8cc0e27836c3e987d593dc0 if you are curious.
|
# 1ead87b4b496525df8cc0e27836c3e987d593dc0 if you are curious.
|
||||||
for waiting_spiff_task in bpmn_process_instance.get_tasks(
|
for waiting_spiff_task in bpmn_process_instance.get_tasks(
|
||||||
max_depth=50000, # TODO: remove when SpiffWorkflow depth calculation is corrected
|
|
||||||
state=TaskState.WAITING
|
state=TaskState.WAITING
|
||||||
| TaskState.CANCELLED
|
| TaskState.CANCELLED
|
||||||
| TaskState.READY
|
| TaskState.READY
|
||||||
|
|
Loading…
Reference in New Issue