Merge "fix 409 exception regex"

This commit is contained in:
Jenkins 2016-11-23 19:29:47 +00:00 committed by Gerrit Code Review
commit 027be162e4
1 changed files with 1 additions and 1 deletions

View File

@ -122,7 +122,7 @@ class Conflict(ClientException):
class NamedMetricAlreadyExists(Conflict, MutipleMeaningException):
message = "Named metric already exists"
match = re.compile("Named metric .* does not exist")
match = re.compile("Named metric .* already exist")
class ResourceAlreadyExists(Conflict, MutipleMeaningException):