Skip to content

Instantly share code, notes, and snippets.

@mcotton
Last active January 2, 2017 18:55
Show Gist options
  • Save mcotton/e27cfb14d0f4333580211f81d9bbdef1 to your computer and use it in GitHub Desktop.
Save mcotton/e27cfb14d0f4333580211f81d9bbdef1 to your computer and use it in GitHub Desktop.
Fix for GAE dev_server error
# https://johanndutoit.net/app-engine-too-many-files/
#google_appengine/google/appengine/tools/devappserver2/mtime_file_watcher.py:115:
#UserWarning: There are too many files in your application for changes in all of them to be monitored.
#You may have to restart the development server to see some changes to your files.
# for me the file is located:
# /Applications/Developer/GoogleAppEngineLauncher.app/Contents/Resources/GoogleAppEngine-default.bundle/Contents/Resources/google_appengine/google/appengine/tools/devappserver2
# add this on line 106
if '/node_modules/' in dirname:
continue
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment