We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0de1936 commit de11404Copy full SHA for de11404
materializationengine/blueprints/client/api2.py
@@ -886,6 +886,11 @@ def get(
886
887
db = dynamic_annotation_cache.get_db(aligned_volume_name)
888
ann_md = db.database.get_table_metadata(table_name)
889
+ if ann_md is None:
890
+ return (
891
+ f"No metadata found for table named {table_name} in version {version}",
892
+ 404,
893
+ )
894
# the get_table_metadata function joins on the segmentationmetadata which
895
# has the segmentation_table in the table_name and the annotation table name in the annotation_table
896
# field. So when we update here, we overwrite the table_name with the segmentation table name,
0 commit comments