Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Unable to remove filesystem's description #332

Closed
v-soni11 opened this issue Nov 4, 2020 · 3 comments
Closed

Unable to remove filesystem's description #332

v-soni11 opened this issue Nov 4, 2020 · 3 comments
Assignees
Labels

Comments

@v-soni11
Copy link

v-soni11 commented Nov 4, 2020

Issue: Unable to remove filesystem's description by providing empty string

steps to reproduce:

>>> from storops.unity.resource import nfs_share
>>> from storops import UnitySystem
>>>
>>> conn = UnitySystem('xx.xx.xx.xx', 'username', 'password', verify=False)
>>>
>>> nas_obj = conn.get_nas_server(name="nas_server")

>>> fs = conn.get_filesystem(name="vvk_fs", nas_server=nas_obj)
>>> fs.description
'test'
>>> fs.modify(description='')
<storops.unity.resp.RestResponse object at 0x7f8d78cb1278>
>>> fs = conn.get_filesystem(name="vvk_fs", nas_server=nas_obj)
>>> fs.description # should be empty '' instead of 'test'
'test'
@yong-huang yong-huang self-assigned this Nov 5, 2020
@yong-huang yong-huang added the bug label Nov 10, 2020
@yong-huang
Copy link
Contributor

Root caused, will fix it.

@yong-huang
Copy link
Contributor

Fixed in #335

@v-soni11
Copy link
Author

Verified. Its Fixed Now

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

2 participants