Document 'early_import_stages' in the docs

This commit is contained in:
Michal Koutenský 2018-02-21 16:01:26 +01:00
parent 1bb1bca779
commit 305f9f2dfb

View file

@ -432,6 +432,11 @@ to register it::
def stage(self, session, task):
print('Importing something!')
It is also possible to request your function to run early in the pipeline by
adding the function to the plugin's ``early_import_stages`` field instead.::
self.early_import_stages = [self.stage]
.. _extend-query:
Extend the Query Syntax