mirror of
https://github.com/bringout/oca-ocb-core.git
synced 2026-04-20 19:52:00 +02:00
18.0 vanilla
This commit is contained in:
parent
d72e748793
commit
0a7ae8db93
337 changed files with 399651 additions and 232598 deletions
12
odoo-bringout-oca-ocb-base/odoo/_monkeypatches/urllib3.py
Normal file
12
odoo-bringout-oca-ocb-base/odoo/_monkeypatches/urllib3.py
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
from urllib3 import PoolManager
|
||||
|
||||
orig_pool_init = PoolManager.__init__
|
||||
|
||||
|
||||
def pool_init(self, *args, **kwargs):
|
||||
orig_pool_init(self, *args, **kwargs)
|
||||
self.pool_classes_by_scheme = {**self.pool_classes_by_scheme}
|
||||
|
||||
|
||||
def patch_urllib3():
|
||||
PoolManager.__init__ = pool_init
|
||||
Loading…
Add table
Add a link
Reference in a new issue