Skip to content

Commit

Permalink
Debug missing arg
Browse files Browse the repository at this point in the history
  • Loading branch information
paulstretenowich committed Oct 19, 2023
1 parent 588803a commit d262f87
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion project_tracking/db_action.py
Original file line number Diff line number Diff line change
Expand Up @@ -920,7 +920,8 @@ def ingest_genpipes(project_id: str, ingest_data, session=None):
name=ingest_data[vb.OPERATION_CONFIG_NAME],
version=ingest_data[vb.OPERATION_CONFIG_VERSION],
md5sum=ingest_data[vb.OPERATION_CONFIG_MD5SUM],
data=bytes(ingest_data[vb.OPERATION_CONFIG_DATA], 'utf-8')
data=bytes(ingest_data[vb.OPERATION_CONFIG_DATA], 'utf-8'),
session=session
)

operation = Operation(
Expand Down

0 comments on commit d262f87

Please sign in to comment.