Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 8 additions & 1 deletion cinder/volume/drivers/hpe/hpe_3par_common.py
Original file line number Diff line number Diff line change
Expand Up @@ -445,7 +445,14 @@ def client_login(self):
def client_logout(self):
if self.client is not None:
LOG.debug("Disconnect from 3PAR REST and SSH %s", self.uuid)
self.client.logout()
try:
self.client.logout()
except hpeexceptions.HTTPConflict as ex:
if "resource in use" in str(ex).lower():
LOG.warning("3PAR session logout returned resource in "
"use; ignoring session cleanup conflict.")
else:
raise

def _create_replication_client(self, remote_array):
try:
Expand Down