Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions app/commons/kafka_producer.py
Original file line number Diff line number Diff line change
Expand Up @@ -118,6 +118,7 @@ async def create_activity_log(self, source_node: dict, schema_name: str, operato
'user': operator,
'imported_from': '',
'changes': [],
'network_origin': 'unknown',
}

byte_message = await self._validate_message(schema_name, message)
Expand Down
4 changes: 4 additions & 0 deletions app/commons/metadata.items.activity.avsc
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,10 @@
"values": "string"
}
}
},
{
"name": "network_origin",
"type": "string"
}
]
}
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "service_upload"
version = "2.2.11"
version = "2.2.12"
description = ""
authors = ["Indoc Research"]

Expand Down
Loading