disable odoo memory limit by default
by default, odoo limits the available memory to 2560 MiB, which can cause MemoryError exceptions, especially when dealing with high amounts of records. disable this limit by default.
This commit is contained in:
parent
42bf4f4379
commit
32cde3f0e7
2
newsfragments/+disable_odoo_memory_limit.feature
Normal file
2
newsfragments/+disable_odoo_memory_limit.feature
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
Disable default Odoo memory limit (of 2560 MiB) by default.
|
||||
This can be adjusted in the `odoo.conf` file for each version.
|
||||
|
|
@ -7,3 +7,7 @@
|
|||
# - http or xml port
|
||||
# - etc.
|
||||
# Only non standard or special options should be specified here.
|
||||
|
||||
[options]
|
||||
# Disable default memory limit of 2560 MiB
|
||||
limit_memory_hard = 0
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user