You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The parameter doc_label is one of my documents("MyIndex")
@registry.register_document
class MyIndex(Document):
The below line from registry_delete_task throws ModuleNotFoundError: No module named 'MyIndex' because MyIndex is not a module.
import_module('MyIndex')
sub issue: There exists a PR here to fix data parameter and rename it to what seems to be the correct name "bulk_data".. The bottom line of the function uses a variable(bulk_data) that does not exist in the function.
The text was updated successfully, but these errors were encountered:
When using the CelerySignalProcessor we call registry_delete_task.
The parameter doc_label is one of my documents("MyIndex")
The below line from registry_delete_task throws
ModuleNotFoundError: No module named 'MyIndex'
because MyIndex is not a module.sub issue: There exists a PR here to fix data parameter and rename it to what seems to be the correct name "bulk_data".. The bottom line of the function uses a variable(bulk_data) that does not exist in the function.
The text was updated successfully, but these errors were encountered: