Activity log for bug #1797291

Date Who What changed Old value New value Message
2018-10-11 02:53:55 Brin Zhang bug added bug
2018-10-11 02:56:00 Brin Zhang affects openstack-manuals manila
2018-10-11 02:56:23 Brin Zhang tags ad13000 driver
2018-10-11 02:56:33 Brin Zhang tags ad13000 driver as13000 driver
2018-10-11 03:04:04 OpenStack Infra manila: status New In Progress
2018-10-11 03:04:04 OpenStack Infra manila: assignee Brin Zhang (zhangbailin)
2018-10-11 05:58:10 Brin Zhang description In manila, Using the cifs protocol in Manila's Shared File Systems, when it is not able to store properly when written in a file, you need to convert the file permission 'rw' to 'rwx' in the [1] method. @staticmethod def transfer_rule_to_client(proto, rule): """transfer manila access rule to backend client""" # TODO: Here need to process the rule of ``cifs`` return dict(name=rule['access_to'], type=(0 if proto == 'nfs' else 1), authority=rule['access_level']) [1] https://github.com/openstack/manila/blob/master/manila/share/drivers/inspur/as13000/as13000_nas.py#L465 In manila, Using the cifs protocol in Manila's Shared File Systems, the files can be read\write, but cannot be create\copy\delete in AS13000, so need to convert the file permission 'rw' to 'rwx' in the [1] method in Manila.     @staticmethod     def transfer_rule_to_client(proto, rule):         """transfer manila access rule to backend client"""         # TODO: Here need to process the rule of ``cifs``         return dict(name=rule['access_to'],                     type=(0 if proto == 'nfs' else 1),                     authority=rule['access_level']) [1] https://github.com/openstack/manila/blob/master/manila/share/drivers/inspur/as13000/as13000_nas.py#L465
2018-10-31 12:00:59 OpenStack Infra manila: status In Progress Fix Released