Merge "NetApp cDOT driver autosupport broken"

This commit is contained in:
Jenkins 2016-09-12 18:32:47 +00:00 committed by Gerrit Code Review
commit 0a2fcb86bd
3 changed files with 14 additions and 7 deletions
manila
share/drivers/netapp/dataontap/client
tests/share/drivers/netapp/dataontap/client
releasenotes/notes

@ -2456,7 +2456,9 @@ class NetAppCmodeClient(client_base.NetAppBaseClient):
def send_ems_log_message(self, message_dict):
"""Sends a message to the Data ONTAP EMS log."""
node_client = copy.deepcopy(self)
# NOTE(cknight): Cannot use deepcopy on the connection context
node_client = copy.copy(self)
node_client.connection = copy.copy(self.connection)
node_client.connection.set_timeout(25)
try:

@ -4311,9 +4311,9 @@ class NetAppClientCmodeTestCase(test.TestCase):
def test_send_ems_log_message(self):
# Mock client lest we not be able to see calls on its copy.
self.mock_object(copy,
'deepcopy',
mock.Mock(return_value=self.client))
self.mock_object(
copy, 'copy',
mock.Mock(side_effect=[self.client, self.client.connection]))
self.mock_object(self.client,
'_get_ems_log_destination_vserver',
mock.Mock(return_value=fake.ADMIN_VSERVER_NAME))
@ -4328,9 +4328,9 @@ class NetAppClientCmodeTestCase(test.TestCase):
def test_send_ems_log_message_api_error(self):
# Mock client lest we not be able to see calls on its copy.
self.mock_object(copy,
'deepcopy',
mock.Mock(return_value=self.client))
self.mock_object(
copy, 'copy',
mock.Mock(side_effect=[self.client, self.client.connection]))
self.mock_object(self.client,
'_get_ems_log_destination_vserver',
mock.Mock(return_value=fake.ADMIN_VSERVER_NAME))

@ -0,0 +1,5 @@
---
fixes:
- The NetApp cDOT driver's autosupport reporting
now works on Python 2.7.12 and later.