From 71f502e657c7d1f07cb07ea8c1a5afa34d899689 Mon Sep 17 00:00:00 2001 From: John Griffith Date: Tue, 18 Nov 2014 12:37:11 -0700 Subject: [PATCH] Fix typo in SolidFire xDBVersionMismatch label The retryable errors list in the SolidFire driver includes an xDBVersionMismatch error that can be emitted from the device. During some recent work however the spelling of the error was incorrect, so it's never deteceted/retried as it should be. This patch fixes the typo from 'xDBVersionMisMatch' to xDBVersionMismatch'. Change-Id: I5b4bf908c6a9146c4554e5749cd12dbc46c6e7c1 Closes-Bug: #1393916 --- cinder/volume/drivers/solidfire.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cinder/volume/drivers/solidfire.py b/cinder/volume/drivers/solidfire.py index fac5167b4..4247258d8 100644 --- a/cinder/volume/drivers/solidfire.py +++ b/cinder/volume/drivers/solidfire.py @@ -120,7 +120,7 @@ class SolidFireDriver(SanISCSIDriver): cluster_stats = {} retry_exc_tuple = (exception.SolidFireRetryableException, requests.exceptions.ConnectionError) - retryable_errors = ['xDBVersionMisMatch', + retryable_errors = ['xDBVersionMismatch', 'xMaxSnapshotsPerVolumeExceeded', 'xMaxClonesPerVolumeExceeded', 'xMaxSnapshotsPerNodeExceeded', -- 2.45.2