Skip to content

Commit d023a98

Browse files
authored
Include imagesets/<id> in uploaded blob ids (#130)
1 parent 30564cb commit d023a98

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
from setuptools import setup
1010

1111
# Update version here when you want to increment the version in PyPi
12-
sdk_version = '0.4.8'
12+
sdk_version = '0.4.9'
1313

1414
# If no ZEGAMI_SDK_VERSION set use the version
1515
try:

zegami_sdk/source.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -331,7 +331,7 @@ def _upload_image_group(self, paths, start_index):
331331

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

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

0 commit comments

Comments
 (0)