-
Notifications
You must be signed in to change notification settings - Fork 310
New issue
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
Do not check if hidden if hidden files are allowed #1224
Comments
Also, does the async file manager not need to await the is_hidden calls? |
There are two Frankly, I don't think AFCM's |
Also addresses jupyter-server/jupyter_server#1224 for our implementation. Also does: - Improves tests by using an actual jupyter server instance instead of calling CM methods directly (gains config + handler logic) - Moves conftest to root, as this is needed by pytest for naming plugins - FSManager init calls super: this enables the traitlets config system
Also addresses jupyter-server/jupyter_server#1224 for our implementation. Also does: - Improves tests by using an actual jupyter server instance instead of calling CM methods directly (gains config + handler logic) - Moves conftest to root, as this is needed by pytest for naming plugins - FSManager init calls super: this enables the traitlets config system
Also addresses jupyter-server/jupyter_server#1224 for our implementation. Also does: - Improves tests by using an actual jupyter server instance instead of calling CM methods directly (gains config + handler logic) - Moves conftest to root, as this is needed by pytest for naming plugins - FSManager init calls super: this enables the traitlets config system
Also addresses jupyter-server/jupyter_server#1224 for our implementation. Also does: - Improves tests by using an actual jupyter server instance instead of calling CM methods directly (gains config + handler logic) - Moves conftest to root, as this is needed by pytest for naming plugins - FSManager init calls super: this enables the traitlets config system
Description
Currently, even if
allow_hidden
is set to true, we still call the potentially expensive check for each and every file. The clauses in the conditional should be switched so that it short-circuits on the setting.Reproduce
Expected behavior
Context
Troubleshoot Output
Command Line Output
Browser Output
The text was updated successfully, but these errors were encountered: