Skip to content

Commit

Permalink
Include imagesets/<id> in uploaded blob ids (#130)
Browse files Browse the repository at this point in the history
  • Loading branch information
ahaith authored Aug 24, 2022
1 parent 30564cb commit d023a98
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
from setuptools import setup

# Update version here when you want to increment the version in PyPi
sdk_version = '0.4.8'
sdk_version = '0.4.9'

# If no ZEGAMI_SDK_VERSION set use the version
try:
Expand Down
2 changes: 1 addition & 1 deletion zegami_sdk/source.py
Original file line number Diff line number Diff line change
Expand Up @@ -331,7 +331,7 @@ def _upload_image_group(self, paths, start_index):

# Obtain blob storage information
blob_storage_urls, id_set = c._obtain_signed_blob_storage_urls(
coll.workspace_id, id_count=len(paths))
coll.workspace_id, id_count=len(paths), blob_path="imagesets/{}".format(self.imageset_id))

# Check that numbers of values are still matching
if not len(paths) == len(blob_storage_urls):
Expand Down

0 comments on commit d023a98

Please sign in to comment.