Skip to content

Commit

Permalink
make dynamic mesh dir graph specific
Browse files Browse the repository at this point in the history
  • Loading branch information
akhileshh committed Sep 23, 2024
1 parent 98c91d0 commit c1af454
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pychunkedgraph/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "3.0.1"
__version__ = "3.0.4"
2 changes: 1 addition & 1 deletion workers/mesh_worker.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ def callback(payload):
try:
mesh_dir = cg.meta.dataset_info["mesh"]
mesh_meta = cg.meta.dataset_info["mesh_metadata"]
cv_unsharded_mesh_dir = mesh_meta.get("unsharded_mesh_dir", "dynamic")
cv_unsharded_mesh_dir = mesh_meta.get("unsharded_mesh_dir", f"dynamic_{cg.graph_id}")
except KeyError:
logging.warning(f"No metadata found for {cg.graph_id}; ignoring...")
return
Expand Down

0 comments on commit c1af454

Please sign in to comment.