Skip to content

Commit

Permalink
feat: allow multiple applications (#1569)
Browse files Browse the repository at this point in the history
* feat: allow multiple applications

Signed-off-by: Dmitriy Kunitskiy <[email protected]>

* update test...

Signed-off-by: Dmitriy Kunitskiy <[email protected]>
  • Loading branch information
Dmitriy Kunitskiy authored Nov 6, 2021
1 parent cde80f9 commit c0b2893
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions common/amundsen_common/models/table.py
Original file line number Diff line number Diff line change
Expand Up @@ -183,6 +183,7 @@ class Table:
owners: List[User] = []
watermarks: List[Watermark] = []
table_writer: Optional[Application] = None
table_apps: Optional[List[Application]] = None
resource_reports: Optional[List[ResourceReport]] = None
last_updated_timestamp: Optional[int] = None
source: Optional[Source] = None
Expand Down
2 changes: 1 addition & 1 deletion common/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

from setuptools import find_packages, setup

__version__ = '0.21.0'
__version__ = '0.22.0'


requirements_path = os.path.join(os.path.dirname(os.path.realpath(__file__)), 'requirements-dev.txt')
Expand Down
1 change: 1 addition & 0 deletions frontend/tests/unit/api/metadata/test_v0.py
Original file line number Diff line number Diff line change
Expand Up @@ -151,6 +151,7 @@ def setUp(self) -> None:
'id': 'test_id',
'description': 'This is a test'
},
'table_apps': None,
'watermarks': [
{'watermark_type': 'low_watermark', 'partition_key': 'ds', 'partition_value': '', 'create_time': ''},
{'watermark_type': 'high_watermark', 'partition_key': 'ds', 'partition_value': '', 'create_time': ''}
Expand Down

0 comments on commit c0b2893

Please sign in to comment.