"src/vscode:/vscode.git/clone" did not exist on "d66b83c92b0ad00229324e838eeb84defc2852d3"
Unverified Commit f93e774b authored by J-shang's avatar J-shang Committed by GitHub
Browse files

fix sharedstorage config convert (#4059)

parent aff7f839
......@@ -58,7 +58,7 @@ class SharedStorageConfig(ConfigBase):
nfs_server: Optional[str] = None
exported_directory: Optional[str] = None
def __init__(self, *, _base_path: Optional[Path], **kwargs):
def __init__(self, *, _base_path: Optional[Path] = None, **kwargs):
kwargs = {util.case_insensitive(key): value for key, value in kwargs.items()}
if 'localmountpoint' in kwargs:
kwargs['localmountpoint'] = Path(kwargs['localmountpoint']).expanduser()
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment