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 wanted to create a mapped lun. I got a LUN object (lun) and an NodeACL object (acl). First i tried this:
'MappedLUN(acl, lun.lun, lun)' and it fails with
Traceback (most recent call last):
File "", line 2, in
File "/usr/lib/python2.7/site-packages/rtslib/target.py", line 1028, in init
+ "a NodeACL object")
rtslib.utils.RTSLibError: The parent_nodeacl parameter must be a NodeACL object
with a 'type(acl)' i could verify that it is of type:
<class 'rtslib_fb.target.NodeACL'>
But do it the other way with:
acl.mapped_lun(lun.lun, lun) it worked.
The text was updated successfully, but these errors were encountered:
I wanted to create a mapped lun. I got a LUN object (lun) and an NodeACL object (acl). First i tried this:
'MappedLUN(acl, lun.lun, lun)' and it fails with
Traceback (most recent call last):
File "", line 2, in
File "/usr/lib/python2.7/site-packages/rtslib/target.py", line 1028, in init
+ "a NodeACL object")
rtslib.utils.RTSLibError: The parent_nodeacl parameter must be a NodeACL object
with a 'type(acl)' i could verify that it is of type:
<class 'rtslib_fb.target.NodeACL'>
But do it the other way with:
acl.mapped_lun(lun.lun, lun) it worked.
The text was updated successfully, but these errors were encountered: