mirror of
https://github.com/odoo/documentation.git
synced 2025-12-12 07:29:27 +07:00
[FIX] extensions: support parallel read
Now that patchqueue was removed, we can consider supporting the parallel read with our local extensions. Since we only have basic extensions, not storing any data on the build environment, the change mainly consists of specifying the extensions as parallelizable. The only specific case is the html domain, since the base html domain requires the support of the method merge_domaindata in parallel read mode. Since we do not need to share anything between the envs for this extension, we can simply ignore the method.
This commit is contained in:
committed by
Antoine Vandevenne (anv)
parent
ba72b396a4
commit
2ddac026f1
@@ -21,6 +21,6 @@ def setup(app):
|
||||
directives.register_directive('autoattribute', PlaceHolder)
|
||||
|
||||
return {
|
||||
'parallel_read_safe': False,
|
||||
'parallel_read_safe': True,
|
||||
'parallel_write_safe': True
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user