Skip to content

Commit

Permalink
fix: make sure parent post_dump is called in data plugin
Browse files Browse the repository at this point in the history
  • Loading branch information
newgene committed May 18, 2023
1 parent 6756deb commit 5d3d637
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions biothings/hub/dataplugin/docker_dumper.py.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -25,5 +25,6 @@ class $DUMPER_NAME($BASE_CLASSES):
if self.__class__.UNCOMPRESS:
self.logger.info("Uncompress all archive files in '%s'" % self.new_data_folder)
uncompressall(self.new_data_folder)
super().post_dump(*args, **kwargs)

$SET_RELEASE_FUNC
1 change: 1 addition & 0 deletions biothings/hub/dataplugin/dumper.py.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -22,5 +22,6 @@ class $DUMPER_NAME($BASE_CLASSES):
if self.__class__.UNCOMPRESS:
self.logger.info("Uncompress all archive files in '%s'" % self.new_data_folder)
uncompressall(self.new_data_folder)
super().post_dump(*args, **kwargs)

$SET_RELEASE_FUNC

0 comments on commit 5d3d637

Please sign in to comment.