We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Using /tmp for the data_dir in the config editor will store this into the msui_settings.json
"data_dir": "/tmp",
but display it as ~/mssdata
The bug is located in the comparison in https://github.com/Open-MSS/MSS/blob/develop/mslib/utils/config.py#L672
we recognized match_type has a bug type(match_type("~/mss")) == StrType while type(c.match_type("/mss")) == FilepathType
This limits currently the path to have a startwith tilde or an fs url definition.
We need a comparison which allows all PyFileSystem2 path definitions. What we see in the editor should be the value which we stored in the file.
The text was updated successfully, but these errors were encountered:
The fix needs to go to stable branch.
Sorry, something went wrong.
@ReimarBauer I have studied the code base and figured out a solution for this, pls assign me this
levi178u
No branches or pull requests
Using /tmp for the data_dir in the config editor will store this into the msui_settings.json
"data_dir": "/tmp",
but display it as ~/mssdata
The bug is located in the comparison in https://github.com/Open-MSS/MSS/blob/develop/mslib/utils/config.py#L672
we recognized match_type has a bug
type(match_type("~/mss")) == StrType while type(c.match_type("/mss")) == FilepathType
This limits currently the path to have a startwith tilde or an fs url definition.
We need a comparison which allows all PyFileSystem2 path definitions. What we see in the editor should be the value which we stored in the file.
The text was updated successfully, but these errors were encountered: