You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I've run into an issue with accessing astra files remotely, where I get an error that the file cannot be found:
In [1]: import sdss_access
In [2]: sdss_access.__version__
Out[2]: '3.0.3'
In [3]: import tree
In [4]: tree.__version__
Out[4]: '4.0.5'
In [5]: from sdss_access import Access, RsyncAccess
In [6]: access = RsyncAccess(release='ipl3')
In [7]: access.remote()
In [8]: access.add('mwmAllStar', v_astra='0.5.0')
In [9]: access.set_stream()
[ERROR]: Traceback (most recent call last):
File "/Users/imedan/anaconda3/envs/kdwarf_params/lib/python3.8/site-packages/IPython/core/interactiveshell.py", line 3508, in run_code
exec(code_obj, self.user_global_ns, self.user_ns)
File "<ipython-input-9-f43dbf15e80a>", line 1, in <module>
access.set_stream()
File "/Users/imedan/anaconda3/envs/kdwarf_params/lib/python3.8/site-packages/sdss_access/sync/baseaccess.py", line 101, in set_stream
self.set_stream_task(task)
File "/Users/imedan/anaconda3/envs/kdwarf_params/lib/python3.8/site-packages/sdss_access/sync/rsync.py", line 60, in set_stream_task
out = self.get_task_out(task=task)
File "/Users/imedan/anaconda3/envs/kdwarf_params/lib/python3.8/site-packages/sdss_access/sync/rsync.py", line 37, in get_task_out
raise AccessError("Return code %r\n%s" % (status, err))
sdss_access.path.path.AccessError: Return code 23
b'rsync: link_stat "spectro/astra/0.5.0/summary/mwmAllStar-0.5.0.fits" (in ipl-3) failed: No such file or directory (2)\nrsync error: some files could not be transferred (code 23) at /AppleInternal/Library/BuildRoots/a0876c02-1788-11ed-b9c4-96898e02b808/Library/Caches/com.apple.xbs/Sources/rsync/rsync/main.c(1404) [receiver=2.6.9]\n'
This does not seem to happen when accessing the file at Utah:
This issue then seems to be a bug where sdss_access is not correctly utilizing the feature to identify whether a file is zipped or not with remote access.
The text was updated successfully, but these errors were encountered:
I've run into an issue with accessing
astra
files remotely, where I get an error that the file cannot be found:This does not seem to happen when accessing the file at Utah:
This issue then seems to be a bug where
sdss_access
is not correctly utilizing the feature to identify whether a file is zipped or not with remote access.The text was updated successfully, but these errors were encountered: