You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The get_plugins function will iterate through the various levels of the .git directory unnecessarily.. This will need to be addressed before we can implement issue #124
The text was updated successfully, but these errors were encountered:
It turns out that this was not the issue. It should still be addressed because it iterates over every sub-directory of the .git folder, but it does not cause a crash or any other side-effects I can identify.
seamustuohy
changed the title
If a .git directory exists in the plugin directory flask will crash
If a.git directory exists in the plugin directory it will test every .git sub-directory as a possible plugin.
Feb 17, 2016
To fix this I suggest having the path walk ignore any directories named .git. This should limit the extraneous debug messages and extra work being done by the application because of the .git directory.
The get_plugins function will iterate through the various levels of the .git directory unnecessarily.. This will need to be addressed before we can implement issue #124
The text was updated successfully, but these errors were encountered: