[IMP] name of remotes should be case insensitive
parent
06c454570d
commit
64ef56ae52
|
@ -3,7 +3,7 @@
|
||||||
|
|
||||||
{
|
{
|
||||||
'name': "Remote Base",
|
'name': "Remote Base",
|
||||||
'version': '11.0.1.0.2',
|
'version': '11.0.1.0.3',
|
||||||
'category': 'Generic Modules/Base',
|
'category': 'Generic Modules/Base',
|
||||||
'author': "Creu Blanca, Odoo Community Association (OCA)",
|
'author': "Creu Blanca, Odoo Community Association (OCA)",
|
||||||
'website': 'http://github.com/OCA/server-tools',
|
'website': 'http://github.com/OCA/server-tools',
|
||||||
|
|
|
@ -40,7 +40,7 @@ class ResRemote(models.Model):
|
||||||
except socket.herror:
|
except socket.herror:
|
||||||
logging.warning('Remote with ip %s could not be found' % addr)
|
logging.warning('Remote with ip %s could not be found' % addr)
|
||||||
hostname = False
|
hostname = False
|
||||||
remote = self.search([('name', '=', hostname or addr)])
|
remote = self.search([('name', '=ilike', hostname or addr)])
|
||||||
if not remote:
|
if not remote:
|
||||||
remote = self.create(self._create_vals(addr, hostname))
|
remote = self.create(self._create_vals(addr, hostname))
|
||||||
if remote.ip != addr:
|
if remote.ip != addr:
|
||||||
|
|
Loading…
Reference in New Issue