Merge "Windows SMBFS: avoid mounting local shares by default"

This commit is contained in:
Zuul 2018-07-16 18:45:11 +00:00 committed by Gerrit Code Review
commit a642901282
2 changed files with 2 additions and 2 deletions

View File

@ -31,7 +31,7 @@ class WindowsSMBFSConnector(win_conn_base.BaseWindowsConnector):
# shares. This is in fact mandatory in some cases, for example
# for the Hyper-C scenario.
self._local_path_for_loopback = kwargs.get('local_path_for_loopback',
False)
True)
self._expect_raw_disk = kwargs.get('expect_raw_disk', False)
self._remotefsclient = remotefs.WindowsRemoteFsClient(

View File

@ -42,7 +42,7 @@ class WindowsRemoteFsClient(remotefs.RemoteFsClient):
}
self._local_path_for_loopback = kwargs.get('local_path_for_loopback',
False)
True)
if mount_type not in mount_type_to_option_prefix:
raise exception.ProtocolNotSupported(protocol=mount_type)