Closed LittleLightLittleFire closed 2 months ago
Run reloader on any FUSE filesystem. FUSE does not support inotify, the current implementation defaults to 'auto' which defaults to 'inotify' when watchdog.observes exists (https://github.com/pallets/werkzeug/blob/main/src/werkzeug/_reloader.py#L405)
watchdog.observes
Needs a switch to force 'auto' to 'stat' mode, possibly via environmental variables so that it can be user controlled.
Environment:
run_simple(..., reloader_type="stat")
Run reloader on any FUSE filesystem. FUSE does not support inotify, the current implementation defaults to 'auto' which defaults to 'inotify' when
watchdog.observes
exists (https://github.com/pallets/werkzeug/blob/main/src/werkzeug/_reloader.py#L405)Needs a switch to force 'auto' to 'stat' mode, possibly via environmental variables so that it can be user controlled.
Environment: