Add uid, and gid to volume clone (#57371)
* and new features * fix issues * fix issues * fix issues * add unit tests
This commit is contained in:
parent
a7b14ec1be
commit
59feb63d19
3 changed files with 263 additions and 55 deletions
|
@ -30,23 +30,31 @@ options:
|
||||||
description:
|
description:
|
||||||
- The parent volume of the volume clone being created.
|
- The parent volume of the volume clone being created.
|
||||||
required: true
|
required: true
|
||||||
volume:
|
type: str
|
||||||
|
name:
|
||||||
description:
|
description:
|
||||||
- The name of the volume clone being created.
|
- The name of the volume clone being created.
|
||||||
required: true
|
required: true
|
||||||
|
type: str
|
||||||
|
aliases:
|
||||||
|
- volume
|
||||||
vserver:
|
vserver:
|
||||||
description:
|
description:
|
||||||
- Vserver in which the volume clone should be created.
|
- Vserver in which the volume clone should be created.
|
||||||
required: true
|
required: true
|
||||||
|
type: str
|
||||||
parent_snapshot:
|
parent_snapshot:
|
||||||
description:
|
description:
|
||||||
- Parent snapshot in which volume clone is created off.
|
- Parent snapshot in which volume clone is created off.
|
||||||
|
type: str
|
||||||
parent_vserver:
|
parent_vserver:
|
||||||
description:
|
description:
|
||||||
- Vserver of parent volume in which clone is created off.
|
- Vserver of parent volume in which clone is created off.
|
||||||
|
type: str
|
||||||
qos_policy_group_name:
|
qos_policy_group_name:
|
||||||
description:
|
description:
|
||||||
- The qos-policy-group-name which should be set for volume clone.
|
- The qos-policy-group-name which should be set for volume clone.
|
||||||
|
type: str
|
||||||
space_reserve:
|
space_reserve:
|
||||||
description:
|
description:
|
||||||
- The space_reserve setting which should be used for the volume clone.
|
- The space_reserve setting which should be used for the volume clone.
|
||||||
|
@ -59,6 +67,17 @@ options:
|
||||||
version_added: '2.8'
|
version_added: '2.8'
|
||||||
description:
|
description:
|
||||||
- Junction path of the volume.
|
- Junction path of the volume.
|
||||||
|
type: str
|
||||||
|
uid:
|
||||||
|
version_added: '2.9'
|
||||||
|
description:
|
||||||
|
- The UNIX user ID for the clone volume.
|
||||||
|
type: int
|
||||||
|
gid:
|
||||||
|
version_added: '2.9'
|
||||||
|
description:
|
||||||
|
- The UNIX group ID for the clone volume.
|
||||||
|
type: int
|
||||||
'''
|
'''
|
||||||
|
|
||||||
EXAMPLES = """
|
EXAMPLES = """
|
||||||
|
@ -70,22 +89,27 @@ EXAMPLES = """
|
||||||
hostname: "{{ netapp hostname }}"
|
hostname: "{{ netapp hostname }}"
|
||||||
vserver: vs_hack
|
vserver: vs_hack
|
||||||
parent_volume: normal_volume
|
parent_volume: normal_volume
|
||||||
volume: clone_volume_7
|
name: clone_volume_7
|
||||||
space_reserve: none
|
space_reserve: none
|
||||||
parent_snapshot: backup1
|
parent_snapshot: backup1
|
||||||
junction_path: /clone_volume_7
|
junction_path: /clone_volume_7
|
||||||
|
uid: 1
|
||||||
|
gid: 1
|
||||||
"""
|
"""
|
||||||
|
|
||||||
RETURN = """
|
RETURN = """
|
||||||
"""
|
"""
|
||||||
|
|
||||||
|
import traceback
|
||||||
from ansible.module_utils.basic import AnsibleModule
|
from ansible.module_utils.basic import AnsibleModule
|
||||||
import ansible.module_utils.netapp as netapp_utils
|
import ansible.module_utils.netapp as netapp_utils
|
||||||
|
from ansible.module_utils.netapp_module import NetAppModule
|
||||||
|
from ansible.module_utils._text import to_native
|
||||||
|
|
||||||
HAS_NETAPP_LIB = netapp_utils.has_netapp_lib()
|
HAS_NETAPP_LIB = netapp_utils.has_netapp_lib()
|
||||||
|
|
||||||
|
|
||||||
class NetAppOntapVolumeClone(object):
|
class NetAppONTAPVolumeClone(object):
|
||||||
"""
|
"""
|
||||||
Creates a volume clone
|
Creates a volume clone
|
||||||
"""
|
"""
|
||||||
|
@ -98,39 +122,33 @@ class NetAppOntapVolumeClone(object):
|
||||||
self.argument_spec.update(dict(
|
self.argument_spec.update(dict(
|
||||||
state=dict(required=False, choices=['present'], default='present'),
|
state=dict(required=False, choices=['present'], default='present'),
|
||||||
parent_volume=dict(required=True, type='str'),
|
parent_volume=dict(required=True, type='str'),
|
||||||
volume=dict(required=True, type='str'),
|
name=dict(required=True, type='str', aliases=["volume"]),
|
||||||
vserver=dict(required=True, type='str'),
|
vserver=dict(required=True, type='str'),
|
||||||
parent_snapshot=dict(required=False, type='str', default=None),
|
parent_snapshot=dict(required=False, type='str', default=None),
|
||||||
parent_vserver=dict(required=False, type='str', default=None),
|
parent_vserver=dict(required=False, type='str', default=None),
|
||||||
qos_policy_group_name=dict(required=False, type='str', default=None),
|
qos_policy_group_name=dict(required=False, type='str', default=None),
|
||||||
space_reserve=dict(required=False, choices=['volume', 'none'], default=None),
|
space_reserve=dict(required=False, choices=['volume', 'none'], default=None),
|
||||||
volume_type=dict(required=False, choices=['rw', 'dp']),
|
volume_type=dict(required=False, choices=['rw', 'dp']),
|
||||||
junction_path=dict(required=False, type='str', default=None)
|
junction_path=dict(required=False, type='str', default=None),
|
||||||
|
uid=dict(required=False, type='int'),
|
||||||
|
gid=dict(required=False, type='int')
|
||||||
))
|
))
|
||||||
|
|
||||||
self.module = AnsibleModule(
|
self.module = AnsibleModule(
|
||||||
argument_spec=self.argument_spec,
|
argument_spec=self.argument_spec,
|
||||||
supports_check_mode=True
|
supports_check_mode=True,
|
||||||
|
required_together=[
|
||||||
|
['uid', 'gid']
|
||||||
|
]
|
||||||
)
|
)
|
||||||
|
|
||||||
parameters = self.module.params
|
self.na_helper = NetAppModule()
|
||||||
|
self.parameters = self.na_helper.set_parameters(self.module.params)
|
||||||
# set up state variables
|
|
||||||
self.state = parameters['state']
|
|
||||||
self.parent_snapshot = parameters['parent_snapshot']
|
|
||||||
self.parent_volume = parameters['parent_volume']
|
|
||||||
self.parent_vserver = parameters['parent_vserver']
|
|
||||||
self.qos_policy_group_name = parameters['qos_policy_group_name']
|
|
||||||
self.space_reserve = parameters['space_reserve']
|
|
||||||
self.volume = parameters['volume']
|
|
||||||
self.volume_type = parameters['volume_type']
|
|
||||||
self.vserver = parameters['vserver']
|
|
||||||
self.junction_path = parameters['junction_path']
|
|
||||||
|
|
||||||
if HAS_NETAPP_LIB is False:
|
if HAS_NETAPP_LIB is False:
|
||||||
self.module.fail_json(msg="the python NetApp-Lib module is required")
|
self.module.fail_json(msg="the python NetApp-Lib module is required")
|
||||||
else:
|
else:
|
||||||
self.server = netapp_utils.setup_na_ontap_zapi(module=self.module, vserver=self.vserver)
|
self.server = netapp_utils.setup_na_ontap_zapi(module=self.module, vserver=self.parameters['vserver'])
|
||||||
return
|
return
|
||||||
|
|
||||||
def create_volume_clone(self):
|
def create_volume_clone(self):
|
||||||
|
@ -138,59 +156,71 @@ class NetAppOntapVolumeClone(object):
|
||||||
Creates a new volume clone
|
Creates a new volume clone
|
||||||
"""
|
"""
|
||||||
clone_obj = netapp_utils.zapi.NaElement('volume-clone-create')
|
clone_obj = netapp_utils.zapi.NaElement('volume-clone-create')
|
||||||
clone_obj.add_new_child("parent-volume", self.parent_volume)
|
clone_obj.add_new_child("parent-volume", self.parameters['parent_volume'])
|
||||||
clone_obj.add_new_child("volume", self.volume)
|
clone_obj.add_new_child("volume", self.parameters['volume'])
|
||||||
if self.qos_policy_group_name:
|
if self.parameters.get('qos_policy_group_name'):
|
||||||
clone_obj.add_new_child("qos-policy-group-name", self.qos_policy_group_name)
|
clone_obj.add_new_child("qos-policy-group-name", self.parameters['qos_policy_group_name'])
|
||||||
if self.space_reserve:
|
if self.parameters.get('space_reserve'):
|
||||||
clone_obj.add_new_child("space-reserve", self.space_reserve)
|
clone_obj.add_new_child("space-reserve", self.parameters['space_reserve'])
|
||||||
if self.parent_snapshot:
|
if self.parameters.get('parent_snapshot'):
|
||||||
clone_obj.add_new_child("parent-snapshot", self.parent_snapshot)
|
clone_obj.add_new_child("parent-snapshot", self.parameters['parent_snapshot'])
|
||||||
if self.parent_vserver:
|
if self.parameters.get('parent_vserver'):
|
||||||
clone_obj.add_new_child("parent-vserver", self.parent_vserver)
|
clone_obj.add_new_child("parent-vserver", self.parameters['parent_vserver'])
|
||||||
if self.volume_type:
|
if self.parameters.get('volume_type'):
|
||||||
clone_obj.add_new_child("volume-type", self.volume_type)
|
clone_obj.add_new_child("volume-type", self.parameters['volume_type'])
|
||||||
if self.junction_path:
|
if self.parameters.get('junction_path'):
|
||||||
clone_obj.add_new_child("junction-path", self.junction_path)
|
clone_obj.add_new_child("junction-path", self.parameters['junction_path'])
|
||||||
self.server.invoke_successfully(clone_obj, True)
|
if self.parameters.get('uid'):
|
||||||
|
clone_obj.add_new_child("uid", str(self.parameters['uid']))
|
||||||
|
clone_obj.add_new_child("gid", str(self.parameters['gid']))
|
||||||
|
try:
|
||||||
|
self.server.invoke_successfully(clone_obj, True)
|
||||||
|
except netapp_utils.zapi.NaApiError as exc:
|
||||||
|
self.module.fail_json(msg='Error creating volume clone: %s: %s' %
|
||||||
|
(self.parameters['volume'], to_native(exc)), exception=traceback.format_exc())
|
||||||
|
|
||||||
def does_volume_clone_exists(self):
|
def get_volume_clone(self):
|
||||||
clone_obj = netapp_utils.zapi.NaElement('volume-clone-get')
|
clone_obj = netapp_utils.zapi.NaElement('volume-clone-get')
|
||||||
clone_obj.add_new_child("volume", self.volume)
|
clone_obj.add_new_child("volume", self.parameters['volume'])
|
||||||
try:
|
try:
|
||||||
results = self.server.invoke_successfully(clone_obj, True)
|
results = self.server.invoke_successfully(clone_obj, True)
|
||||||
except netapp_utils.zapi.NaApiError:
|
if results.get_child_by_name('attributes'):
|
||||||
return False
|
attributes = results.get_child_by_name('attributes')
|
||||||
attributes = results.get_child_by_name('attributes')
|
info = attributes.get_child_by_name('volume-clone-info')
|
||||||
info = attributes.get_child_by_name('volume-clone-info')
|
parent_volume = info.get_child_content('parent-volume')
|
||||||
parent_volume = info.get_child_content('parent-volume')
|
# checking if clone volume name already used to create by same parent volume
|
||||||
if parent_volume == self.parent_volume:
|
if parent_volume == self.parameters['parent_volume']:
|
||||||
return True
|
return results
|
||||||
self.module.fail_json(msg="Error clone %s already exists for parent %s" % (self.volume, parent_volume))
|
except netapp_utils.zapi.NaApiError as error:
|
||||||
|
# Error 15661 denotes an volume clone not being found.
|
||||||
|
if to_native(error.code) == "15661":
|
||||||
|
pass
|
||||||
|
else:
|
||||||
|
self.module.fail_json(msg='Error fetching volume clone information %s: %s' %
|
||||||
|
(self.parameters['volume'], to_native(error)), exception=traceback.format_exc())
|
||||||
|
return None
|
||||||
|
|
||||||
def apply(self):
|
def apply(self):
|
||||||
"""
|
"""
|
||||||
Run Module based on play book
|
Run Module based on play book
|
||||||
"""
|
"""
|
||||||
changed = False
|
|
||||||
netapp_utils.ems_log_event("na_ontap_volume_clone", self.server)
|
netapp_utils.ems_log_event("na_ontap_volume_clone", self.server)
|
||||||
existing_volume_clone = self.does_volume_clone_exists()
|
current = self.get_volume_clone()
|
||||||
if existing_volume_clone is False: # create clone
|
cd_action = self.na_helper.get_cd_action(current, self.parameters)
|
||||||
changed = True
|
if self.na_helper.changed:
|
||||||
if changed:
|
|
||||||
if self.module.check_mode:
|
if self.module.check_mode:
|
||||||
pass
|
pass
|
||||||
else:
|
else:
|
||||||
self.create_volume_clone()
|
if cd_action == 'create':
|
||||||
|
self.create_volume_clone()
|
||||||
self.module.exit_json(changed=changed)
|
self.module.exit_json(changed=self.na_helper.changed)
|
||||||
|
|
||||||
|
|
||||||
def main():
|
def main():
|
||||||
"""
|
"""
|
||||||
Creates the NetApp Ontap Volume Clone object and runs the correct play task
|
Creates the NetApp Ontap Volume Clone object and runs the correct play task
|
||||||
"""
|
"""
|
||||||
obj = NetAppOntapVolumeClone()
|
obj = NetAppONTAPVolumeClone()
|
||||||
obj.apply()
|
obj.apply()
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -3461,7 +3461,6 @@ lib/ansible/modules/storage/netapp/na_ontap_user.py E337
|
||||||
lib/ansible/modules/storage/netapp/na_ontap_user.py E338
|
lib/ansible/modules/storage/netapp/na_ontap_user.py E338
|
||||||
lib/ansible/modules/storage/netapp/na_ontap_user_role.py E337
|
lib/ansible/modules/storage/netapp/na_ontap_user_role.py E337
|
||||||
lib/ansible/modules/storage/netapp/na_ontap_user_role.py E338
|
lib/ansible/modules/storage/netapp/na_ontap_user_role.py E338
|
||||||
lib/ansible/modules/storage/netapp/na_ontap_volume_clone.py E337
|
|
||||||
lib/ansible/modules/storage/netapp/na_ontap_volume_clone.py E338
|
lib/ansible/modules/storage/netapp/na_ontap_volume_clone.py E338
|
||||||
lib/ansible/modules/storage/netapp/na_ontap_volume.py E337
|
lib/ansible/modules/storage/netapp/na_ontap_volume.py E337
|
||||||
lib/ansible/modules/storage/netapp/na_ontap_volume.py E338
|
lib/ansible/modules/storage/netapp/na_ontap_volume.py E338
|
||||||
|
|
179
test/units/modules/storage/netapp/test_na_ontap_volume_clone.py
Normal file
179
test/units/modules/storage/netapp/test_na_ontap_volume_clone.py
Normal file
|
@ -0,0 +1,179 @@
|
||||||
|
# (c) 2018, NetApp, Inc
|
||||||
|
# GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt)
|
||||||
|
|
||||||
|
''' unit tests ONTAP Ansible module: na_ontap_volume_clone'''
|
||||||
|
|
||||||
|
from __future__ import print_function
|
||||||
|
import json
|
||||||
|
import pytest
|
||||||
|
|
||||||
|
from units.compat import unittest
|
||||||
|
from units.compat.mock import patch
|
||||||
|
from ansible.module_utils import basic
|
||||||
|
from ansible.module_utils._text import to_bytes
|
||||||
|
import ansible.module_utils.netapp as netapp_utils
|
||||||
|
|
||||||
|
from ansible.modules.storage.netapp.na_ontap_volume_clone \
|
||||||
|
import NetAppONTAPVolumeClone as my_module
|
||||||
|
|
||||||
|
if not netapp_utils.has_netapp_lib():
|
||||||
|
pytestmark = pytest.mark.skip('skipping as missing required netapp_lib')
|
||||||
|
|
||||||
|
|
||||||
|
def set_module_args(args):
|
||||||
|
"""prepare arguments so that they will be picked up during module creation"""
|
||||||
|
args = json.dumps({'ANSIBLE_MODULE_ARGS': args})
|
||||||
|
basic._ANSIBLE_ARGS = to_bytes(args) # pylint: disable=protected-access
|
||||||
|
|
||||||
|
|
||||||
|
class AnsibleExitJson(Exception):
|
||||||
|
"""Exception class to be raised by module.exit_json and caught by the test case"""
|
||||||
|
pass
|
||||||
|
|
||||||
|
|
||||||
|
class AnsibleFailJson(Exception):
|
||||||
|
"""Exception class to be raised by module.fail_json and caught by the test case"""
|
||||||
|
pass
|
||||||
|
|
||||||
|
|
||||||
|
def exit_json(*args, **kwargs): # pylint: disable=unused-argument
|
||||||
|
"""function to patch over exit_json; package return data into an exception"""
|
||||||
|
if 'changed' not in kwargs:
|
||||||
|
kwargs['changed'] = False
|
||||||
|
raise AnsibleExitJson(kwargs)
|
||||||
|
|
||||||
|
|
||||||
|
def fail_json(*args, **kwargs): # pylint: disable=unused-argument
|
||||||
|
"""function to patch over fail_json; package return data into an exception"""
|
||||||
|
kwargs['failed'] = True
|
||||||
|
raise AnsibleFailJson(kwargs)
|
||||||
|
|
||||||
|
|
||||||
|
class MockONTAPConnection(object):
|
||||||
|
''' mock server connection to ONTAP host '''
|
||||||
|
|
||||||
|
def __init__(self, kind=None):
|
||||||
|
''' save arguments '''
|
||||||
|
self.type = kind
|
||||||
|
self.xml_in = None
|
||||||
|
self.xml_out = None
|
||||||
|
|
||||||
|
def invoke_successfully(self, xml, enable_tunneling): # pylint: disable=unused-argument
|
||||||
|
''' mock invoke_successfully returning xml data '''
|
||||||
|
self.xml_in = xml
|
||||||
|
if self.type == 'volume_clone':
|
||||||
|
xml = self.build_volume_clone_info()
|
||||||
|
elif self.type == 'volume_clone_fail':
|
||||||
|
raise netapp_utils.zapi.NaApiError(code='TEST', message="This exception is from the unit test")
|
||||||
|
self.xml_out = xml
|
||||||
|
return xml
|
||||||
|
|
||||||
|
@staticmethod
|
||||||
|
def build_volume_clone_info():
|
||||||
|
''' build xml data for volume-clone-info '''
|
||||||
|
xml = netapp_utils.zapi.NaElement('xml')
|
||||||
|
data = {'attributes': {'volume-clone-info': {'volume': 'ansible',
|
||||||
|
'parent-volume': 'ansible'}}}
|
||||||
|
xml.translate_struct(data)
|
||||||
|
return xml
|
||||||
|
|
||||||
|
|
||||||
|
class TestMyModule(unittest.TestCase):
|
||||||
|
''' a group of related Unit Tests '''
|
||||||
|
|
||||||
|
def setUp(self):
|
||||||
|
self.mock_module_helper = patch.multiple(basic.AnsibleModule,
|
||||||
|
exit_json=exit_json,
|
||||||
|
fail_json=fail_json)
|
||||||
|
self.mock_module_helper.start()
|
||||||
|
self.addCleanup(self.mock_module_helper.stop)
|
||||||
|
self.server = MockONTAPConnection()
|
||||||
|
self.onbox = False
|
||||||
|
|
||||||
|
def set_default_args(self):
|
||||||
|
if self.onbox:
|
||||||
|
hostname = '10.10.10.10'
|
||||||
|
username = 'username'
|
||||||
|
password = 'password'
|
||||||
|
vserver = 'ansible'
|
||||||
|
volume = 'ansible'
|
||||||
|
parent_volume = 'ansible'
|
||||||
|
else:
|
||||||
|
hostname = '10.10.10.10'
|
||||||
|
username = 'username'
|
||||||
|
password = 'password'
|
||||||
|
vserver = 'ansible'
|
||||||
|
volume = 'ansible'
|
||||||
|
parent_volume = 'ansible'
|
||||||
|
return dict({
|
||||||
|
'hostname': hostname,
|
||||||
|
'username': username,
|
||||||
|
'password': password,
|
||||||
|
'vserver': vserver,
|
||||||
|
'volume': volume,
|
||||||
|
'parent_volume': parent_volume
|
||||||
|
})
|
||||||
|
|
||||||
|
def test_module_fail_when_required_args_missing(self):
|
||||||
|
''' required arguments are reported as errors '''
|
||||||
|
with pytest.raises(AnsibleFailJson) as exc:
|
||||||
|
set_module_args({})
|
||||||
|
my_module()
|
||||||
|
print('Info: %s' % exc.value.args[0]['msg'])
|
||||||
|
|
||||||
|
def test_ensure_get_called(self):
|
||||||
|
''' test get_volume_clone() for non-existent volume clone'''
|
||||||
|
set_module_args(self.set_default_args())
|
||||||
|
my_obj = my_module()
|
||||||
|
my_obj.server = self.server
|
||||||
|
assert my_obj.get_volume_clone() is None
|
||||||
|
|
||||||
|
def test_ensure_get_called_existing(self):
|
||||||
|
''' test get_volume_clone() for existing volume clone'''
|
||||||
|
set_module_args(self.set_default_args())
|
||||||
|
my_obj = my_module()
|
||||||
|
my_obj.server = MockONTAPConnection(kind='volume_clone')
|
||||||
|
assert my_obj.get_volume_clone()
|
||||||
|
|
||||||
|
@patch('ansible.modules.storage.netapp.na_ontap_volume_clone.NetAppONTAPVolumeClone.create_volume_clone')
|
||||||
|
def test_successful_create(self, create_volume_clone):
|
||||||
|
''' creating volume_clone and testing idempotency '''
|
||||||
|
module_args = {
|
||||||
|
'parent_snapshot': 'abc',
|
||||||
|
'parent_vserver': 'abc',
|
||||||
|
'volume_type': 'dp',
|
||||||
|
'qos_policy_group_name': 'abc',
|
||||||
|
'junction_path': 'abc',
|
||||||
|
'uid': '1',
|
||||||
|
'gid': '1'
|
||||||
|
}
|
||||||
|
module_args.update(self.set_default_args())
|
||||||
|
set_module_args(module_args)
|
||||||
|
my_obj = my_module()
|
||||||
|
if not self.onbox:
|
||||||
|
my_obj.server = self.server
|
||||||
|
with pytest.raises(AnsibleExitJson) as exc:
|
||||||
|
my_obj.apply()
|
||||||
|
assert exc.value.args[0]['changed']
|
||||||
|
create_volume_clone.assert_called_with()
|
||||||
|
# to reset na_helper from remembering the previous 'changed' value
|
||||||
|
my_obj = my_module()
|
||||||
|
if not self.onbox:
|
||||||
|
my_obj.server = MockONTAPConnection('volume_clone')
|
||||||
|
with pytest.raises(AnsibleExitJson) as exc:
|
||||||
|
my_obj.apply()
|
||||||
|
assert not exc.value.args[0]['changed']
|
||||||
|
|
||||||
|
def test_if_all_methods_catch_exception(self):
|
||||||
|
module_args = {}
|
||||||
|
module_args.update(self.set_default_args())
|
||||||
|
set_module_args(module_args)
|
||||||
|
my_obj = my_module()
|
||||||
|
if not self.onbox:
|
||||||
|
my_obj.server = MockONTAPConnection('volume_clone_fail')
|
||||||
|
with pytest.raises(AnsibleFailJson) as exc:
|
||||||
|
my_obj.get_volume_clone()
|
||||||
|
assert 'Error fetching volume clone information ' in exc.value.args[0]['msg']
|
||||||
|
with pytest.raises(AnsibleFailJson) as exc:
|
||||||
|
my_obj.create_volume_clone()
|
||||||
|
assert 'Error creating volume clone: ' in exc.value.args[0]['msg']
|
Loading…
Reference in a new issue