mirror of
https://github.com/open-metadata/OpenMetadata.git
synced 2026-01-06 12:36:56 +00:00
Fixed entity req left check (#14341)
This commit is contained in:
parent
c156e01e34
commit
7f6311ec4c
@ -426,7 +426,7 @@ class TopologyRunnerMixin(Generic[C]):
|
||||
# Either use the received request or the acknowledged Entity
|
||||
entity = entity_request.right if entity_request else None
|
||||
|
||||
if not stage.nullable and entity is None:
|
||||
if not stage.nullable and entity is None and entity_request.left is None:
|
||||
raise ValueError("Value unexpectedly None")
|
||||
|
||||
if entity_request is not None:
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user