Merge PR #28380 into master

* refs/pull/28380/head:
	mgr/volumes: convert string to bytes object

Reviewed-by: Patrick Donnelly <pdonnell@redhat.com>
Reviewed-by: Ramana Raja <rraja@redhat.com>
This commit is contained in:
Patrick Donnelly 2019-06-04 09:08:55 -07:00
commit cfb0d0edd7
No known key found for this signature in database
GPG Key ID: 3A2A7E25BEA8AADB

View File

@ -95,7 +95,7 @@ class SubvolumeClient(object):
log.debug("CephFS initializing...")
self.fs.init()
log.debug("CephFS mounting...")
self.fs.mount(filesystem_name=self.fs_name)
self.fs.mount(filesystem_name=self.fs_name.encode('utf-8'))
log.debug("Connection to cephfs complete")
def disconnect(self):