Skip to content

Commit

Permalink
add missing use_https=True for CloudVolume initialization
Browse files Browse the repository at this point in the history
  • Loading branch information
schlegelp committed Mar 21, 2024
1 parent 905065a commit d878e55
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fafbseg/flywire/segmentation.py
Original file line number Diff line number Diff line change
Expand Up @@ -1559,7 +1559,7 @@ def is_valid_root(x, raise_exc=False, *, dataset=None):
"""
client = get_cave_client(dataset=dataset)
vol = cv.CloudVolume(client.chunkedgraph.cloudvolume_path)
vol = cv.CloudVolume(client.chunkedgraph.cloudvolume_path, use_https=True, progress=False)

if navis.utils.is_iterable(x):
is_valid = np.array([is_valid_root(r, dataset=dataset) for r in x])
Expand Down

0 comments on commit d878e55

Please sign in to comment.