Sync charm-helpers to get fix for pool_exists()

Change-Id: I87449b1cda34b5c69faf101a0cc3a749160ff543
Closes-Bug: 1572506
This commit is contained in:
Edward Hope-Morley 2016-04-20 11:58:32 +01:00
parent b6d2ef5efb
commit 89ac19a257
1 changed files with 1 additions and 1 deletions

View File

@ -615,7 +615,7 @@ def pool_exists(service, name):
except CalledProcessError:
return False
return name in out
return name in out.split()
def get_osds(service):