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 1a743cf commit e4c457eCopy full SHA for e4c457e
intern/convenience/array.py
@@ -715,7 +715,14 @@ def __init__(self, cv_config: dict = None):
715
"cloudpath": "",
716
"bucket": "bossdb-open-data",
717
}
718
- self._cv = CloudVolumeRemote(self.cv_config)
+ # NOTE: Hotfix to translate the array configuration to a cloudvolume
719
+ # remote configuration. The CV Remote does not distinguish between
720
+ # bucket and path as separate attributes currently.
721
+ self._cv = CloudVolumeRemote({
722
+ "protocol": self.cv_config["protocol"],
723
+ "cloudpath": f"{self.cv_config['bucket']}/{self.cv_config['cloudpath']}"
724
+ })
725
+
726
727
def get_remote(self):
728
return self._cv
0 commit comments