Test out always closing the inotify

This commit is contained in:
Trenton H 2025-03-04 15:06:30 -08:00
parent 169aa8c8bd
commit c7eaf21c11

View File

@ -354,6 +354,6 @@ class Command(BaseCommand):
except KeyboardInterrupt:
logger.info("Received SIGINT, stopping inotify")
finished = True
inotify.rm_watch(descriptor)
inotify.close()
finally:
inotify.rm_watch(descriptor)
inotify.close()