Skip to content

Commit

Permalink
Merge branch 'release_23.1' into dev
Browse files Browse the repository at this point in the history
  • Loading branch information
mvdbeek committed Oct 13, 2023
2 parents ff9d610 + 6659840 commit 8848758
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion lib/galaxy/util/watcher.py
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,17 @@ class EventHandler(FileSystemEventHandler):
def __init__(self, watcher):
self.watcher = watcher

def on_any_event(self, event):
# this effectively excludes on_opened and on_closed
def on_moved(self, event):
self._handle(event)

def on_created(self, event):
self._handle(event)

def on_deleted(self, event):
self._handle(event)

def on_modified(self, event):
self._handle(event)

def _extension_check(self, key, path):
Expand Down

0 comments on commit 8848758

Please sign in to comment.