Skip to content

Commit

Permalink
fix: updated UpdateDocumentRequest model to make value optional (#1617)
Browse files Browse the repository at this point in the history
* fix: updated UpdateDocumentRequest model to make value optional

* Update setup.py
  • Loading branch information
allisonsuarez authored Dec 10, 2021
1 parent 928b167 commit 73b2c10
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion common/amundsen_common/models/search.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ class UpdateDocumentRequest:
resource_key: str
resource_type: str
field: str
value: str
value: Optional[str]
operation: str # can be add or overwrite


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.24.0'
__version__ = '0.24.1'


requirements_path = os.path.join(os.path.dirname(os.path.realpath(__file__)), 'requirements-dev.txt')
Expand Down

0 comments on commit 73b2c10

Please sign in to comment.