Skip to content
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

SocketIO.run() add additional reloader specific parameters. #1556

Closed
wants to merge 3 commits into from

Commits on May 20, 2021

  1. SocketIO.run() new reloader specific params

    Currently, the SocketIO development server can only include additional files, but not selectively exclude them during debugging. 
    
    The Werkzeug reloader already provides a parameter to be able to exclude specific patterns, leveraging that ability, SocketIO would be able to do the same. An additional parameter was added the run() method has the same behavior across extra_files, exclude_patterns, and reloader_type
    
    The same has been done for the reloader_type additional argument. Werkzeug lets you choose which reloader to use and depending on the architecture/machine it may be beneficial to allow explicitly specifying the reloader used.
    indietyp committed May 20, 2021
    Copy the full SHA
    1d5f654 View commit details
    Browse the repository at this point in the history
  2. fix typo

    indietyp committed May 20, 2021
    Copy the full SHA
    f27d666 View commit details
    Browse the repository at this point in the history

Commits on May 21, 2021

  1. fix W291 trailing whitespace

    indietyp committed May 21, 2021
    Copy the full SHA
    f73aabe View commit details
    Browse the repository at this point in the history