pyl w/ burnettk

This commit is contained in:
jasquat 2022-11-15 17:38:37 -05:00
parent 56c8c0c633
commit 93d9aa845f
2 changed files with 7 additions and 8 deletions

View File

@ -701,11 +701,11 @@ class ProcessInstanceProcessor:
"bpmn_file_full_path_from_bpmn_process_identifier: bpmn_process_identifier is unexpectedly None"
)
spec_reference = SpecReferenceCache.query.filter_by(
identifier=bpmn_process_identifier
).filter_by(
type='process'
).first()
spec_reference = (
SpecReferenceCache.query.filter_by(identifier=bpmn_process_identifier)
.filter_by(type="process")
.first()
)
bpmn_file_full_path = None
if spec_reference is None:
bpmn_file_full_path = (
@ -1021,7 +1021,7 @@ class ProcessInstanceProcessor:
spiff_logger = logging.getLogger("spiff")
for handler in spiff_logger.handlers:
if hasattr(handler, "bulk_insert_logs"):
handler.bulk_insert_logs() # type: ignoreidentifier
handler.bulk_insert_logs() # type: ignore
db.session.commit()
except WorkflowTaskExecException as we:

View File

@ -126,8 +126,7 @@ class TestSpecFileService(BaseTest):
with_db_and_bpmn_file_cleanup: None,
with_super_admin_user: UserModel,
) -> None:
"""When a BPMN processes identifier is changed in a file, the old id
is removed from the cache."""
"""When a BPMN processes identifier is changed in a file, the old id is removed from the cache."""
old_identifier = "ye_old_identifier"
process_id_lookup = SpecReferenceCache(
identifier=old_identifier,